Using a permanent data set
If in a previous job you had stored the permanent data set SURVEY1 in the class sub-directory, then the following code
LIBNAME Library '/bios524/classlib'; PROC PRINT DATA=Library.SURVEY1; TITLE "Using a permanent data set"; ID SUBJ; RUN;
produces identical results:
Using a permanent data set SUBJ GENDER HEIGHT WEIGHT YEAR 1 M 68 155 91 7 F 72 205 90 9 M 66 120 93