Code a PROC MEANS that shows both summed and averaged
output of the data.
Answer Posted / srini
Proc Means data=test noprint;
var var1 var2(optional)
output out=newdataset
sum= mean=;
run;
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
how sas deals with business intelligence? : Sas-bi
What are the uses of sas?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
How would you identify a macro variable?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
How do dates work in SAS data?
how do you pull data from equifax?tell me the process?
What are the parameters of scan function?
Explain the difference between nodup and nodupkey options?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
How we can call macros with in data step? : sas-macro
how do you want missing values handled? : Sas programming
Mention the category in which sas informats are placed?
What is a pdv and what are its functions?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?