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


Please Help Members By Posting Answers For Below Questions

What is interleaving in SAS?

866


Do you need to rearrange the order of the data for the report?

2073


In ARRAY processing, what does the DIM function do?

926


Which function is used to count the number of intervals between two sas dates?

859


what are sas bi dashboard components? : Sas-bi

876


what is the purpose of _error_? : Sas programming

860


What is the maximum length of the macro variable? : sas-macro

856


what are 5 ways to perform a table lookup in sas? : Sas-administrator

997


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

746


what is sas database server? : Sas-di

819


What can you learn from the SAS log when debugging?

1125


What are the statements that are executed only?

908


What is the basic syntax style in SAS?

848


What is maximum storage capability of SAS?

1101


which date function advances a date, time or datetime value by a given interval? : Sas programming

808