What statement do you code to tell SAS that it is to write
to an external file?
Answer Posted / kranthi arabelly
Folks ...plz see bellow diff instream and External file
1. Data from an external file
DATA statement;
INFILE statement;
INPUT statement;
other SAS statements used in the DATA step
Run;
2. Data in job stream
DATA statement;
INPUT Statement;
other SAS Statements used on the DATA step
CARDS Statement;
data lines
;
Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
what are some differences between proc summary and proc means? : Sas programming
What is by-group processing?
Explain the special input delimiters used in sas programming.
explain the use of % includes a statement in sas? : Sas-administrator
Are you sensitive to code walk-throughs peer review or QC review?
Can you execute a macro within a macro? Describe. : sas-macro
What is the role of sas grid administrator? : sas-grid-administration
how to remove duplicates using proc sql?
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
Differences between where and if statement?
Are you involved in writing the inferential analysis plan? Tables specifications?
Explain why double trailing @@ is used in input statement?
why is sas considered self-documenting? : Sas programming
How would you invoke a macro? : sas-macro
How do you add a number to a macro variable? : sas-macro