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

What is the basic structure of the SAS base program?

0 Answers  


1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.

1 Answers  


What is the difference between where and if statement?

0 Answers  


What is your favorite all time computer book? Why?

0 Answers   Oracle,


how can u create zero observation dataset?

11 Answers   CitiGroup,






Differences between where and if statement?

0 Answers  


Difference Between Scan and Substr

2 Answers  


how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?

7 Answers   TCS,


SAS System ?

5 Answers  


What is the general format of function in sas? : sas-grid-administration

0 Answers  


what is broad cast agent? : Sas-bi

0 Answers  


how can you code the confidence intervals?

6 Answers   Cytel, IIT, Ranbaxy,


Categories