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
Can you execute a macro within a macro? Describe. : sas-macro
How to limit decimal places for variable using proc means?
How we can create SAS USER DEFINED CODE?
What are the differences between proc means and proc summary?
what are the categories that sas informats are used to the place the data? : Sas-administrator
explain the key concept of sas? : Sas-administrator
Explain why double trailing @@ is used in input statement?
how to change the execute of macro
What is run-group processing?
Describe the function and untility of the most difficult SAS macro that you have written.
what is the difference between infile and input? : Sas-administrator
How do you use the do loop if you don’t know how many times you should execute the do loop?
what is proc Index? and what is proc document?
What is interleaving in SAS?
Describe the ways in which you can create macro variables?