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 can sas program be validated?
what is snowflake schema? : Sas-di
for report generation which one you used proc report or data_null_?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
What are the different servers in sas? : sas-grid-administration
what is hierarchy flattening? : Sas-di
How can you limit the variables written to output dataset in data step?
What is your favorite all time computer book? Why?
What are the parameters of scan function?
describe how to adjust the performance of data integrator? : Sas-di
What is the length assigned to the target variable by the scan function?
how do you debug and test your sas programs? : Sas programming
how will you location sas platform applications available from web browser? : Sas-bi
What is the good sas programming practices for processing large data sets?
What are the uses of sas?