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
what are sas/access and sas/connect? : Sas programming
How would you determine the number of missing or nonmissing values in computations?
What are the difficulties u faced while doing vital signs table or dataset?
what is the difference between floor and ceil functions in sas? : Sas-administrator
What are the difference between ceil and floor functions in sas?
Give e an example of..
how will you locate the sas platform applications? : Sas-bi
Which command is used to save logs in the external file?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What is the difference between proportion and average?
How do you control the number of observations and/or variables read or written?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
what is sas metadata repository? : Sas-bi
For what purpose would you use the RETAIN statement?
How to specify variables to be processed by the freq procedure?