1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
72
73 DATA mydata;
74
75 INFILE "\\Desktop\SASUniversityEdition\myfolders\students.csv"
76
77 DELIMITER = ","
78
79 MISSOVER DSD
80
81 FIRSTOBS=2;
82
83 /*LRECL=32767;*/
84
85
86
87 INPUT Gender Age Weghit Height BMI H_status Married Ethnicity Education Nutr_Prog Major
87 ! Dietery_Recom Food_groups Heathly_choices Diet_disease Fiber_recom
88
89 ;
90
91 RUN;
ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/\\Desktop\SASUniversityEdition\myfolders\students.csv.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.MYDATA may be incomplete. When this step was stopped there were 0 observations and 16 variables.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
92
93
94 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
106 Thank you Paige Miller for reply. you can see log text above.
... View more