is there any differnce between proc means and proc summary?
Answer Posted / kumaraswamy madoori
1) Proc Means generate a default output but Proc Summary
require Print option to generate output similar to proc
means.
2) To get similar outputs Proc summary should compulsory
have atleast one variable in VAR statement.
If you want a proof for the above please run the below code:
proc means data=sasuser.admit;
run;
proc summary data=sasuser.admit print;
run;
The outputs will be different.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
describe about metadata object? : Sas-di
what is sas metadata repository? : Sas-bi
Give some examples where proc report’s defaults are different than proc print’s defaults?
What is proc sort?
What function CATX syntax does?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
what is null hypothesis? why do you consider that?
where are dashboard components are created and maintained? : Sas-bi
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
How to convert a numeric variable to a character variable?
what are sas bi dashboard components? : Sas-bi
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
Which statement does not perform automatic conversions in comparisons?
Differentiate between proc means and proc summary.