1 The SAS System 11:45 Tuesday, March 20, 2018 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M1) Licensed to UNIVERSITY OF FLORIDA - SFA T&R, Site 70095659. NOTE: This session is executing on the Linux 2.6.32-696.18.7.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 13.1 SAS/ETS 13.1 SAS/OR 13.1 SAS/IML 13.1 SAS/QC 13.1 NOTE: Additional host information: Linux LIN X64 2.6.32-696.18.7.el6.x86_64 #1 SMP Thu Dec 28 20:15:47 EST 2017 x86_64 Red Hat Enterprise Linux Server release 6.9 (Santiago) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.14 seconds cpu time 0.02 seconds 1 options ps=54 ls=76 nodate nonumber; 2 3 FILENAME website HTTP 4 "http://www.stat.ufl.edu/~winner/data/breath_reg.dat" 5 6 data one; ____ 23 ERROR 23-2: Invalid option name data. The SAS System 6 ! data one; ___ 23 ERROR: Error in the FILENAME statement. 7 infile website; ______ 180 ERROR 23-2: Invalid option name one. ERROR 180-322: Statement is not valid or it is used out of proper order. 8 input subject brtime male bac subjmean bac_c; _____ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 9 brtime_c=brtime-5.5; ________ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 10 run; 11 NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.03 seconds ERROR: There is not a default input data set (_LAST_ is _NULL_). NOTE: The SAS System stopped processing this step because of errors. NOTE: SAS set option OBS=0 and will continue to check statements. This might cause NOTE: No observations in data set. 12 proc mixed; 13 class subject; 14 model bac = brtime / solution; 15 random intercept / sub=subject type=un solution; 16 run; 17 NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.00 seconds ERROR: There is not a default input data set (_LAST_ is _NULL_). NOTE: The SAS System stopped processing this step because of errors. 18 proc mixed; 19 class subject; 20 model bac = brtime / solution; 21 random intercept brtime / sub=subject type=un solution; The SAS System 22 run; 23 24 NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.00 seconds ERROR: There is not a default input data set (_LAST_ is _NULL_). NOTE: The SAS System stopped processing this step because of errors. 25 proc mixed; 26 class subject; 27 model bac = brtime male brtime*male / solution; 28 random intercept brtime / sub=subject type=un solution; 29 run; 30 31 ERROR: Errors printed on pages 1,2,3. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.20 seconds cpu time 0.05 seconds