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
how are numeric and character missing values represented internally? : Sas programming
what can you learn from the sas log when debugging? : Sas programming
what is snowflake schema? : Sas-di
What is the purpose of trailing @ and @@? How do you use them?
what is ae onset date n what is RDS
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
how many display types available in sas bi dashboard? : Sas-bi
What are the new features included in the new version of SAS Programming Language?
Are you sensitive to code walk-throughs peer review or QC review?
What is the difference between input and infile statement?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What do the SAS log messages "numeric values have been converted to character" mean?
Describe the ways in which you can create a macro variable?
What is the work of tranwrd function?
What does the trace option do?