Hi I am using SAS University Edition. I downloaded the zip files and did everything as instructed. setup.sas runs with no issues, and gives the correct note in the log. However, when I run createdata.sas I receive the following output: 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; NOTE: ODS statements in the SAS Studio environment may disable some output features. 73 74 75 /**********************************************/ 76 /* You must run SETUP.SAS before you run */ 77 /* this code to create your data for EPG194 */ 78 /* */ 79 /* DO NOT EDIT THE CODE BELOW */ 80 /**********************************************/ 81 82 %include "&path/_1create_class.sas"; WARNING: Physical file does not exist, /folders/myfolders/EPG194/data/_1create_class.sas. ERROR: Cannot open %INCLUDE file ~/EPG194/data/_1create_class.sas. 83 %include "&path/_2create_natpark.sas"; WARNING: Physical file does not exist, /folders/myfolders/EPG194/data/_2create_natpark.sas. ERROR: Cannot open %INCLUDE file ~/EPG194/data/_2create_natpark.sas. 84 %include "&path/_3create_storm.sas"; WARNING: Physical file does not exist, /folders/myfolders/EPG194/data/_3create_storm.sas. ERROR: Cannot open %INCLUDE file ~/EPG194/data/_3create_storm.sas. 85 86 proc contents data=pg1._all_ nods; 87 run; WARNING: No matching members in directory. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.18 seconds cpu time 0.18 seconds 88 89 90 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 102 Thanks, Dan
... View more