I am working through the 2nd practice question in the Programming Essentials class and continue to get errors when running the code. The task is: Write a PROC CONTENTS step to generate a report of the storm_summary.sas7bdat table. SAS Studio: Specify the path to your EPG1V2/data folder and the full name of the table I am working in SAS Studio, so my code is: proc contents data="/home/u497000996/EPG1V2/data/storm_summary.sas7bdat"; run; However, when I run the code I get the error: 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; SYMBOLGEN: Macro variable _SASWSTEMP_ resolves to /home/u49700996/.sasstudio/.images/9c2f11a4-e2fc-4d68-b371-f66d6148b2af SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable GRAPHINIT resolves to GOPTIONS RESET=ALL GSFNAME=_GSFNAME; 72 73 proc contents data="/home/u497000996/EPG1V2/data/storm_summary.sas7bdat"; ERROR: Create of library failed. 74 run; I am able to pull up the data when I click on the file itself, so I know that it is there, but the code isn't working. Any insight would be much appreciated!
... View more