which stats created by proc means that are not created by proc
summary or vice versa?
Answers were Sorted based on User's Feedback
Answer / vivek
PROC SUMMARY displays the descriptive statistics. By
default, PROC SUMMARY produces no display output, but PROC
MEANS does produce display output. So in Proc SUMMARY you
have to give the Print option explicitly.
Also if you exclude Var statement then summary will only
print number of obs. Try this on sashelp.shoes
proc means data = sashelp.shoes;
run;
proc summary data = sashelp.shoes print;
run;
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / emw
I began using SAS in the early 1980's, and Proc Summary was thought to be one of the proc's to be no longer supported by SAS, so many programmer stopped using it! One of the advantages of Proc Summary was it didn't error out if the data set was not sorted, as proc means did. Proc Summary did an internal check, now we can check but in the old days this option wasn't possible. These days, I just use Proc Means don't know why Proc Summary is still being used ...anyone??
| Is This Answer Correct ? | 0 Yes | 5 No |
what is star schema? : Sas-di
what is the need of INDEX in datasets?
What is the purpose of _character_ and _numeric_?
how many types of MERGE?
what is the frontend and backend of sas? Is sas is a progaming langauge or tool? on which langauge sas depends?
how to generate means for every subject;
Describe a time when you were really stuck on a problem and how you solved it?
Explain the use of proc gplot? : sas-grid-administration
how many data types in sas? : Sas-administrator
When merging 2 datasets with a common variable (not merge key), how to keep both?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
How would you determine how far down on a page you have printed in order to print out footnotes?