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


Please Help Members By Posting Answers For Below Questions

what are sas/access and sas/connect? : Sas programming

782


How would you determine the number of missing or nonmissing values in computations?

861


What are the difficulties u faced while doing vital signs table or dataset?

2187


what is the difference between floor and ceil functions in sas? : Sas-administrator

959


What are the difference between ceil and floor functions in sas?

1085


Give e an example of..

2133


how will you locate the sas platform applications? : Sas-bi

823


Which command is used to save logs in the external file?

830


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

845


What is the difference between proportion and average?

3040


How do you control the number of observations and/or variables read or written?

1030


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.

1697


what is sas metadata repository? : Sas-bi

851


For what purpose would you use the RETAIN statement?

1291


How to specify variables to be processed by the freq procedure?

851