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
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
how to remove duplicates using proc sql?
What is the basic structure of a sas program?
Explain the main difference between the sas procedures and functions? : Sas-administrator
explain the function of substr in sas? : Sas-administrator
describe about metadata object? : Sas-di
what is star schema? : Sas-di
What is factor analysis?
Give some examples where proc report’s defaults are different than proc print’s defaults?
what is sas business intelligence? : Sas-bi
I need level 2 to 5 sas using companies in india
Name and describe few sas character functions that are used for data cleaning in brief.
what is factor analysis? : Sas-administrator
name some data transformation used in sas di? : Sas-di
What does P-value signify about the statistical data?