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 |
What are all the problems you faced while validating tables and reports?
0 Answers Accenture, Quintiles,
What do you code to create a macro? : sas-macro
how many types prompting framework can be broken down to? : Sas-bi
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
Why is a STOP statement needed for the point=option on a SET statement?
Mention few capabilities of sas framework.
Does anybody has lastest SAS certification dumps,if anybody has please mail me at akshara_SAS@ymail.com Thanks Akshara
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.
When you will use nowd option in report???
How do you add a number to a macro variable? : sas-macro
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro