If you’re not wanting any SAS output from a data step, how
would you code the data statement to prevent SAS from
producing a set?
Answers were Sorted based on User's Feedback
Answer / thanwi
using _null_ in data statement
data _null_;
--
--
--
run;
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / learner
QUESTIONS IS NOT CLEAR ...WANT THE OUTPUT BUT NOT IN THE
FORM OF SAS DATA SET ...
SO USE IN PLACE OF DATASET NAME _NULL_
RATNA...DONT GIVE ...IF YOU DONT KNOW THE ANSWER..PLS
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prateek
I think one should not be stopped from giving answeres, the
reader should apply his/her knowledge also.
Anyways the DATA _NULL_; statement is the correct answere.
| Is This Answer Correct ? | 3 Yes | 2 No |
What is instream data in SAS?
how to read the variables in sas? : Sas-administrator
Code the MEANS to produce output to be used later.
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what is the use of catalog?
how do we get duplicate observations in a separate dataset?
which domain is better in sas? clinical trails or banking
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
What are the data types does SAS contain?
what is the difference between nodup and nodupkey options? : Sas programming
what are the best practices to process the large data sets in sas programming? : Sas-administrator
How can you limit the variables written to output dataset in data step?