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 interleaving in SAS?
Do you need to rearrange the order of the data for the report?
In ARRAY processing, what does the DIM function do?
Which function is used to count the number of intervals between two sas dates?
what are sas bi dashboard components? : Sas-bi
what is the purpose of _error_? : Sas programming
What is the maximum length of the macro variable? : sas-macro
what are 5 ways to perform a table lookup in sas? : Sas-administrator
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
what is sas database server? : Sas-di
What can you learn from the SAS log when debugging?
What are the statements that are executed only?
What is the basic syntax style in SAS?
What is maximum storage capability of SAS?
which date function advances a date, time or datetime value by a given interval? : Sas programming