what is the diff. b/w proc means and proc summary?

Answer Posted / name is no need

differences:
1.The means procedure provides the simple statistics like
N,min,max,mean ans standard deviation.

The summary procedure provides the values _type_,_freq_ and
_stat_.

2.The means procedure gives the ouput/list report by
default.
The summary procedure provides a data set instead of
output/list report
3.proc means syntax:
proc means data=data set name;
class<varible declaration>;
var<variable declaration>;
run;
Proc summary syntax:
proc summary data=data set name;
output out=<new data set name>;
class<variable declaration>;
var<variable declaration>;
run;
4.if we use Noprint and output out=.. options in proc means
it should exactly equals to proc summary.

Is This Answer Correct ?    17 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where do you use proc means over proc freq?

564


how to remove duplicates using proc sql?

631


what are validation tools that are used in sas? : Sas-administrator

593


Differentiate between format and informat? : sas-grid-administration

581


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

571






what are some differences between proc summary and proc means? : Sas programming

508


How do you use the do loop if you don’t know how many times you should execute the do loop?

753


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

651


what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming

572


What can be the size of largest dataset in SAS?

718


what do the sas log messages "numeric values have been converted to character" mean? : Sas programming

541


What is SAS informats?

638


Explain by-group processing?

590


Explain the purpose of retain statement.

603


What are the data types in sas?

609