is there any differnce between proc means and proc summary?
Answer Posted / kumaraswamy madoori
1) Proc Means generate a default output but Proc Summary
require Print option to generate output similar to proc
means.
2) To get similar outputs Proc summary should compulsory
have atleast one variable in VAR statement.
If you want a proof for the above please run the below code:
proc means data=sasuser.admit;
run;
proc summary data=sasuser.admit print;
run;
The outputs will be different.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is sas business intelligence? : Sas-bi
how would you determine the number of missing or nonmissing values in computations? : Sas programming
what does the run statement do? : Sas programming
What do you know about symput and symget?
what are the considerations when picking a SAS/STAT procedure?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
what is transformation in sas data integration? : Sas-di
If money were no object, what would you like to do?
do you need to know if there are any missing values? : Sas programming
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
How can I remove header from output data set?
Difference between nodup and nodupkey options?
What can be the size of largest dataset in SAS?
What is the use of %include statement?
why a stop statement is needed for the point= option on a set statement?