SAS 2 lesson 3.2.11level1 --->infile path is displayed an error.
input @1 employee_ID 6.
@21 Last_name $18.
@43 Job_title $20.
@64 Salary Dollar8.
Please let me know the infile path for sales1.dat.
OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
42 ;
43 data salesstaff;
44 infile '/folders/myshortcuts/batch5/ecourse2/sales1.dat';
45 input @1 employee_ID 6.
46 @21 Last_name $18.
47 @43 Job_title $20.
48 @64 Salary Dollar8.
49 @87 Hire_date mmddyy8.;
50 run;
ERROR: Physical file does not exist, /folders/myshortcuts/batch5/ecourse2/sales1.dat.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.SALESSTAFF may be incomplete. When this step was stopped there were 0 observations and 5 variables.
WARNING: Data set WORK.SALESSTAFF was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time 0.03 seconds
cpu time 0.04 seconds
51 Title 'Sales Staff in Australia and United
52 State';
53 proc print data=salesstaff;
54 run;
NOTE: No observations in data set WORK.SALESSTAFF.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
55 title;
56 ;
57 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
67 ;