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
what are input dataset and output dataset options? : Sas programming
What are the automatic variables for macro? : sas-macro
How would you define the end of a macro?
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
What is the use of the %include statement?
What’s the difference between var b1 – b3 and var b1 — b3?
Explain what is the use of proc gplot?
Define run-group processing?
What is the basic structure of the SAS base program?
what is snowflake schema? : Sas-di
What is the basic syntax style in SAS?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
Name and describe few sas character functions that are used for data cleaning in brief.
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
name several ways to achieve efficiency in your program? : Sas programming