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

Explain how you can debug and test your SAS program?

730


explain about various caches available in data integrator? : Sas-di

784


What is run-group processing?

828


How can I remove header from output data set?

2310


Differentiate between format and informat? : sas-grid-administration

787


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1660


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2458


What do the put and input function do?

766


for report generation which one you used proc report or data_null_?

7069


Describe a time when you were really stuck on a problem and how you solved it?

2293


Describe the ways in which you can create macro variables? : sas-macro

766


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

1872


Explain append procedure?

813


Explain input and put function?

847


Give some ways by which you can define the variables to produce the summary report (using proc report)?

809