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
Which command is used to save logs in the external file?
What is the function of Stop statement in a SAS Program?
What is the SAS data set?
What are common programming errors committed in sas
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
How would you identify a macro variable?
Describe the function and untility of the most difficult SAS macro that you have written.
What do the SAS log messages "numeric values have been converted to character" mean?
What areas of SAS are you most interested in?
Explain why double trailing @@ is used in input statement?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
describe the interaction table in sas di? : Sas-di
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
What are all the problems you faced while validating tables and reports?
what are the best practices to process the large data sets in sas programming? : Sas-administrator