What statement do you code to write the record to the file?
Answers were Sorted based on User's Feedback
Answer / g.jyotshna
file 'path';
put _all_;
run;
this is for all variables to write into the file.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / jothi sankar
FILE '<location-of-file-to-be-written>';
and
PUT var1 var2 var3 .... varn;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / cindy
data _Null_;
set ;
file "c:\location of file to be written.file format eg
(txt)";
put _all_; or var1, var2;
| Is This Answer Correct ? | 0 Yes | 0 No |
What commands are used in the case of including or excluding any specific variables in the data set?
What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
1 Answers Accenture, Sciformix,
Are you involved in writing the inferential analysis plan? Tables specifications?
do you need to know if there are any missing values? : Sas programming
Name any two sas spawners? : sas-grid-administration
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
What do the SAS log messages "numeric values have been converted to character" mean?
what is transformation in sas data integration? : Sas-di
Describe the function and untility of the most difficult SAS macro that you have written.
what is Business Intelligence?
What is interleaving in SAS?
how to handle in stream data containing semicolon in it?