Code a PROC MEANS that shows both summed and averaged
output of the data.
Answer Posted / venkatesh.layam
proc means data=sashelp.calss means sum=total;
class gender;
var age;
run;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Explain what is the use of proc gplot?
How do you define proc in sas? : sas-grid-administration
What is the use of stop statement?
What do the mod and int function do? : Sas programming
Can you execute macro within another macro? : sas-macro
explain the proc in sas? : Sas-administrator
name some data transformation used in sas di? : Sas-di
Name validation tools used in SAS
Do you know the features of sas?
What is the use of %include statement?
what are _numeric_ and _character_ and what do they do? : Sas programming
How to specify variables to be processed by the freq procedure?
What is program data vector (pdv) and what are its functions?
Describe the ways in which you can create macro variables? : sas-macro
What is the order of application for output data set options, input data set options and SAS statements?