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
Explain how you can debug and test your SAS program?
explain about various caches available in data integrator? : Sas-di
What is run-group processing?
How can I remove header from output data set?
Differentiate between format and informat? : sas-grid-administration
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.
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
What do the put and input function do?
for report generation which one you used proc report or data_null_?
Describe a time when you were really stuck on a problem and how you solved it?
Describe the ways in which you can create macro variables? : sas-macro
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
Explain append procedure?
Explain input and put function?
Give some ways by which you can define the variables to produce the summary report (using proc report)?