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 date function advances a date, time or datetime value by a given interval?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Explain proc univariate?
Define run-group processing?
What is the sas data set? : sas-grid-administration
Do you need to rearrange the order of the data for the report?
How do dates work in SAS data?
Explain what Proc glm does?
what has been your most common programming mistake? : Sas programming
what is sas enterprise intelligence architecture? : Sas-bi
How to read an input file in sas?
What is the role of sas grid administrator? : sas-grid-administration
What are the statements in proc sql?
What is the SAS data set?