which stats created by proc means that are not created by proc
summary or vice versa?
Answers were Sorted based on User's Feedback
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 |
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 |
What is PROC in SAS?
How does proc sql work?
what is prime numbers? how we can get plc write sas code?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
How can I remove header from output data set?
which stats created by proc means that are not created by proc summary or vice versa?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
What are pdv and it functions?
what are the methods that you would employ to fine tune your SQL extract process using SAS/Access or Proc SQL?
How to import the Zip files into SAS? If it is possible in SAS? If it is posible write the code...
How would you delete observations with duplicate keys?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?