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


Please Help Members By Posting Answers For Below Questions

where to use sas business intelligence? : Sas-bi

582


which features do you use to check the data validations and errors? : Sas-administrator

549


How can you limit the variables written to output dataset in data step?

755


what are the benefits of data integration? : Sas-di

540


Explain the special input delimiters used in sas programming.

583






What is the SAS data set?

679


What is the difference between %put and symbolgen? : sas-macro

671


What are the ways in which macro variables can be created in sas programming?

569


what is data access? : Sas-di

609


Tell e how how dealt with..

1757


What is the difference between match merge and one to one merge?

693


explain the key concept of sas? : Sas-administrator

559


How we can create SAS USER DEFINED CODE?

1614


explain the function of substr in sas? : Sas-administrator

556


what is the difference between infile and input? : Sas-administrator

609