what is the diff. b/w proc means and proc summary?
Answer Posted / pradeep
Differences between summary and means proceedure are 2.
One is print and noprint options and var statement.
Proc means give diff result with out var statement and proc
summary give diff result with out var statement all u people
try once.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the basic structure of the SAS base program?
do you need to know if there are any missing values? : Sas programming
what is slowly changing dimension? : Sas-di
Mention what are the data types does SAS contain?
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.
What function CATX syntax does?
how does sas handle missing values in a merge? : Sas programming
Differentiate between ceil and floor functions.
how do you pull data from equifax?tell me the process?
how to do user inputs and command line arguments in sas?
How do dates work in sas?
what r the job openings SAS for fresher graduates !
what is broad cast agent? : Sas-bi
what is ae onset date n what is RDS
What is the difference between INPUT and INFILE ?