how to import XTP files into SAS datasets?
Answer / prashanthi.a
libname xptfile xport "&libname\test.xpt";
libname sasfile2 "&libname\new\";
proc copy in=xptfile out=sasfile2 memtype=data;
run;
for example:
libname xptdmg xport 'C:\Documents and Settings\user2\My
Documents\pk_analysis\Work\02data_raw\dmg.xpt';
proc copy in=xptdmg out= rawdata memtype= data;
run;
| Is This Answer Correct ? | 6 Yes | 0 No |
Explain input and put function?
What data sets do you need to produce the report?
what is the use of proc sql? : Sas programming
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
Do you know the features of sas?
What is SAS? is it a software just for use or we can creat something over there?
What do you feel about hardcoding?
do you prefer proc report or proc tabulate? Why? : Sas programming
what is hash files in sas and why we are using this one in sas?
I need level 2 to 5 sas using companies in india
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
What is the basic structure of a sas program?