Code the MEANS to produce output to be used later.
Answers were Sorted based on User's Feedback
Answer / siri
proc means data=XYZ noprint;
by var;
output out=ZYX;
run;
output out is important to producethe poutputt to be used
in later stages
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ss
Actually they aksed to produce output to be used later, in
that case you have to give the permanent libref.
| Is This Answer Correct ? | 4 Yes | 3 No |
How can I remove header from output data set?
What is the purpose of _character_ and _numeric_?
How to specify variables to be processed by the freq procedure?
Are you involved in writing the inferential analysis plan? Tables specfications?
Mention what is PROC in SAS?
Where do the database management systems store data and how do u import them.
what are all the reports you generated in your recent project?
0 Answers Accenture, Quintiles,
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
What is the pound sign used for the DATA _NULL_?