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
What are the new features included in the new version of SAS Programming Language?
Can you execute macro within another macro? : sas-macro
What are the functions which are used for character handling functions?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
Explain what Proc glm does?
how will you location sas platform applications available from web browser? : Sas-bi
Name any two sas spawners? : sas-grid-administration
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What is the maximum length of the macro variable? : sas-macro
what is the use of sas management console? : Sas-di
what has been your most common programming mistake? : Sas programming
Explain data step in SAS
what is the effect of the options statement errors=1? : Sas programming
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
what is sas application server? : Sas-di