DATA step creates a permanent SAS data set?
If you use a library other than work, yes.
Hi:
To illustrated Kurt's point.
cynthia
** temporary data set, will be in WORK library;
** WORK library is "cleared" at the end of every session;
data class;
set sashelp.class;
age_in_5_yrs = age + 5;
run;
** permanent data set will be in C:\mydata folder;
** and will persist after SAS session ends;
libname perm 'c:\mydata';
data perm.class;
set sashelp.class;
age_in_5_yrs = age + 5;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.