• My interface is SAS studio. While I was doing the first activity of Lesson4 and checking my code along with its hiden answer. A doubt arise to me as follows. • To create a permanent table with LIBNAME statement, why do we need to pass in Path argument like "path-to-EPG1V2/output" as recommended below since I guess that a new table is not stored in the output folder but in my libraries? • The path argument should be abandoned empty enclosed with double quotations, shoudn't it? == quote == Note: To create storm_cat5 as a permanent table in the EPG1V2/output folder, you would simply submit a LIBNAME statement to define a library and then reference the library on the DATA statement as in: libname out "path-to-EPG1V2/output";
data out.storm_cat5;
. . .
run; == Unquote==
... View more