is there any difference between proc summary and proc means?
Answer Posted / sudha
proc means by default produce an output.Proc summary do not
produce output unless we metion output option in proc.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
Name some categories in sas 9? : sas-grid-administration
What is the difference between match merge and one to one merge?
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 are common programming errors committed in sas
Which date function advances a date, time or datetime value by a given interval?
What is program data vector (pdv)?
Difference between informat and format?
how do you pull data from equifax?tell me the process?
what are input dataset and output dataset options? : Sas programming
how do the in= variables improve the capability of a merge? : Sas programming
Explain the purpose of retain statement.
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
Mention few capabilities of sas framework.
How would you identify a macro variable?