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 to include or exclude specific variables in a data set?
How to sort in descending order?
Do you know the features of sas?
what is operational data and operational system? : Sas-di
Describe the ways in which you can create macro variables? : sas-macro
Which command is used to perform sorting in sas program?
what are the best practices to process the large data sets in sas programming? : Sas-administrator
Describe the function and untility of the most difficult SAS macro that you have written.
Given an unsorted data set, how to read the last observation to a new data set?
describe how to adjust the performance of data integrator? : Sas-di
What is the basic syntax of a sas program?
What system options would you use to help debug a macro? : sas-macro
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
Explain input and put function?
what has been your most common programming mistake? : Sas programming