Difference b/n proc means and proc summary procedures?
Answer Posted / manojkumar.d1218
proc means and summary procedures are display the summary
statistics like n mean e.t.c...
And To display the summary statistics means procedure is the
is more efficiency because print option is default working
and display the summarized tables summary procedure is more efficient because noprint option is default working
proc means data=sashelp.class;
class name;
var age;
run;
/*for summary procedure */
proc summary data=sashelp.class;
class name;
var age;output out=summary_statistics;
run;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
how would you create multiple observations from a single observation? : Sas programming
explain the difference between proc means and proc summary?
how do the in= variables improve the capability of a merge? : Sas programming
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
what is the use of proc sql? : Sas programming
What are the different versions of sas that you have used until now? : sas-grid-administration
Compare sas with other data analytics tools.
what is proc Index? and what is proc document?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
what can you learn from the sas log when debugging? : Sas programming
For what purposes have you used sas macros? : sas-macro
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
how the sas basic syntax style described? : Sas-administrator
Which are the statements whose placement in the data step is critical?
Name any two sas spawners? : sas-grid-administration