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
If you could design your ideal job, what would it look like?
explain about data integrator metadata reports? : Sas-di
what versions of sas have you used (on which platforms)? : Sas programming
What is the use of function Proc summary?
what are sas/access and sas/connect? : Sas programming
What are the ways in which macro variables can be created in sas programming?
Which statement does not perform automatic conversions in comparisons?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
describe how to adjust the performance of data integrator? : Sas-di
Describe the ways in which you can create macro variables?
How to create a permanent sas data set?
Explain substr function?
what is the difference between floor and ceil functions in sas? : Sas-administrator
What are the difference between the sas data step and sas procs?
To what type of programms have you used scratch macros?