which stats created by proc means that are not created by proc
summary or vice versa?

Answers were Sorted based on User's Feedback



which stats created by proc means that are not created by proc summary or vice versa?..

Answer / 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

which stats created by proc means that are not created by proc summary or vice versa?..

Answer / emw

I began using SAS in the early 1980's, and Proc Summary was thought to be one of the proc's to be no longer supported by SAS, so many programmer stopped using it! One of the advantages of Proc Summary was it didn't error out if the data set was not sorted, as proc means did. Proc Summary did an internal check, now we can check but in the old days this option wasn't possible. These days, I just use Proc Means don't know why Proc Summary is still being used ...anyone??

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More SAS Interview Questions

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

0 Answers  


Which function is used to count the number of intervals between two sas dates?

0 Answers  


Have you used macros? For what purpose you have used? : sas-macro

0 Answers  


How to read the file names of a text files from a shared drive using SAS?

1 Answers   HSBC, WNS,


How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?

0 Answers   Accenture,






Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT SAS Training in Data Management at InfoSchool Bangalore

1 Answers  


what is business intelligence? : Sas-bi

0 Answers  


How to include or exclude specific variables in a data set?

0 Answers  


What can you learn from the SAS log when debugging?

0 Answers   Quintiles,


describe the interaction table in sas di? : Sas-di

0 Answers  


Briefly explain input and put function?

0 Answers  


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

0 Answers  


Categories