What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / name is no need
we can import the an external file in three ways to a sas
data set
1.libname libref<location of the sas data set library>;
filname fileref<path of the raw data file>;
data <data set name>;
infile <fileref>;
input <variable declarations>;
run;
2.proc import
3.by using the proc import option in the sas wizard of file
menu option.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
How can you limit the variables written to output dataset in data step?
Mention the difference between ceil and floor functions in sas?
what is sas data set?
What is maximum number of rows and cols can be handled in SAS?
how would you create multiple observations from a single observation? : Sas programming
which date functions advances a date time or date/time value by a given interval? : Sas programming
Mention the validation tools used in SAS?
What is a macro routine?
Explain how you can debug and test your SAS program?
what is the difference between unique key and primary key? : Sas-di
What can you learn from the SAS log when debugging?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
What are pdv and it functions?