What statement do you code to tell SAS that it is to write
to an external file?
Answer Posted / jothi sankar
_NULL_ statemnet.
Eg:
DATA
_NULL_;
SET MYDATA;
FILE '<FILE-LOCATION>';
PUT var1 var2 var3 ... varn;
RUN;
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What are the applications primarily used by business analyst? : Sas-bi
how are numeric and character missing values represented internally? : Sas programming
what are 5 ways to perform a table lookup in sas? : Sas-administrator
explain the difference between proc means and proc summary?
Name validation tools used in SAS
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
Mention the category in which sas informats are placed?
What does the RUN statement do?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
Are you sensitive to code walk-throughs peer review or QC review?
what are input dataset and output dataset options? : Sas programming
What are the 3 components in sas programming?
which features do you use to check the data validations and errors? : Sas-administrator
what is data integration? : Sas-di
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming