what is the diff. b/w proc means and proc summary?
Answer Posted / chiranjeevi
proc means:
When ever we are using the proc means procedure by default
it's displaying the results in output window.
syntax:proc means data=<dataset name>;
output out=<newdataset name>;
run;
proc summary:
proc summary doesnt generate an output, if you want an
output, you include and specify the print option.
syntax:proc summary data=<datasetname> print;
output out=<newdatasetname>;
run;
| Is This Answer Correct ? | 24 Yes | 4 No |
Post New Answer View All Answers
Tell me more about the parameters in macro? : sas-macro
what is data access? : Sas-di
What are the functions which are used for character handling functions?
What is the difference between proportion and average?
AE datasets names? how many types?
What do the put and input function do?
What is run-group processing?
How would you identify a macro variable? : sas-macro
which date functions advances a date time or date/time value by a given interval? : Sas programming
Tell e how how dealt with..
What is the basic syntax style in SAS?
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
What is the order of application for output data set options, input data set options and SAS statements?
What does PROC print, and PROC contents do?
I have a dataset concat having variable a b & c. How to rename a b to e & f?