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
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
How would you identify a macro variable?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
What are the table names in oracle database...?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
How do you define proc in sas? : sas-grid-administration
Which date function advances a date, time or datetime value by a given interval?
how the sas basic syntax style described? : Sas-administrator
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
What is program data vector (pdv)?
What is SAS? What are the functions does it performs?
what are some good sas programming practices for processing very large data sets? : Sas programming
Which statement does not perform automatic conversions in comparisons?
What do you know about sas data set?