what is the difference between proc means and proc tabulate?
Answer Posted / ravi
Proc Means is used for creating reports with
mean,max,min,number of non missing values and lots more but
the statistics fields that I described above are the default
ones..For proc mean and we have more..
With proc tabulate we can do all work which proc report,proc
mean do with the help of proc tabulate we can have a report
which is more descriptive and can have statistics field too..
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
what is sas business intelligence? : Sas-bi
How would you define the end of a macro?
what are the best practices to process the large data sets in sas programming? : Sas-administrator
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.
How to create an external dataset with sas code?
Describe the function and utility of the most difficult SAS macro that you have written?
What is the good sas programming practices for processing large data sets?
What is slibref?
Do you need to know if there are any missing values?
What do you code to create a macro? : sas-macro
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
what is sas database server? : Sas-di
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
How are numeric and character missing values represented internally?
AE datasets names? how many types?