which stats created by proc means that are not created by proc
summary or vice versa?
Answer Posted / 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 |
Post New Answer View All Answers
Difference between SAS STATA & SPSS?
Describe 5 ways to do a “table lookup” in SAS?
how will you location sas platform applications available from web browser? : Sas-bi
How does the internal authentication work in sas? : sas-grid-administration
why is sas considered self-documenting? : Sas programming
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what are sas/access and sas/connect? : Sas programming
Difference between sum function and using “+” operator?
what is sas and what are the functions? : Sas-administrator
Describe the ways in which you can create macro variables? : sas-macro
what are some differences between proc summary and proc means? : Sas programming
Explain bmdp procedure?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
what is enterprise guide? What is the use of it? : Sas programming
How to create a permanent sas data set?