what is the diff. b/w proc means and proc summary?
Answer Posted / chiranjeevi
proc means:
When ever we are using the proc means procedure by default
it's displaying the results in output window.
syntax:proc means data=<dataset name>;
output out=<newdataset name>;
run;
proc summary:
proc summary doesnt generate an output, if you want an
output, you include and specify the print option.
syntax:proc summary data=<datasetname> print;
output out=<newdatasetname>;
run;
| Is This Answer Correct ? | 24 Yes | 4 No |
Post New Answer View All Answers
What is PDV?
How to include or exclude specific variables in a data set?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
How do you delete duplicate observations in sas?
What are the different versions of sas that you have used until now? : sas-grid-administration
How would you determine the number of missing or nonmissing values in computations?
what versions of sas have you used (on which platforms)? : Sas programming
What are the limitations for memory allocation for SAS variables
what is sas metadata repository? : Sas-bi
Enlist the syntax rules followed in sas statements.
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
What is PROC in SAS?
What is the role of administrative users? : sas-grid-administration
Explain the purpose of retain statement.
Mention how to limit decimal places for the variable using proc means?