Monday, March 10, 2014

Data Loading in SAS

SPSS Data Loading with SAS


We load the data from the SPSS file provided in the study named 
"Pres2007Clustered.sav". 
To load the file we use the SPSS procedure SAS PROC IMPORT

%let PATH = C:\Users\Sebastien\Desktop\Presidentielles 2007 SAS\;
libname lib "&PATH";
PROC IMPORT out = tPres2007 datafile = "&PATH.Pres2007Clustered.sav" dbms
= spss replace;  /* replace data*/
run; 

No comments:

Post a Comment