hhi,
I am new to SAS
please help me how to Import the SAS datafiles
I know PROCIMPORT can impor the CSV,TXT files,,
But can we do this same for files like TEST,DAT ...(sas datasets)??
Regards
ALLU
You don't need to import a SAS dataset (something like TEST.sas7bdat) into SAS. You just need to tell SAS where it is with a libname statement :
libname DS "C:\myDataSets";
then you can access it with syntax :
proc print data=DS.TEST; run;
PG
You don't need to import a SAS dataset (something like TEST.sas7bdat) into SAS. You just need to tell SAS where it is with a libname statement :
libname DS "C:\myDataSets";
then you can access it with syntax :
proc print data=DS.TEST; run;
PG
thanks...
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 save with the early bird rate—just $795!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.