what is the difference between proc means and proc tabulate?
Answer Posted / vigneshwaran.s
Proc Means is used for Creating output with Mean,Std
Dev.,Minimum and maximum values for the Numeric variables
considered in Var Statement.
Proc tabulate is used for Creating tabular Report and it
does NOT deal with any statistics.
| Is This Answer Correct ? | 17 Yes | 14 No |
Post New Answer View All Answers
What do you know about symput and symget?
Explain proc univariate?
What is the difference between one to one merge and match merge? Give an example.
what is broad cast agent? : Sas-bi
What makes sas stand out to be the best over other data analytics tools?
Explain data_null_?
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 the different servers in sas? : sas-grid-administration
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
how does sas handle missing values in sort order? : Sas programming
What is the difference between INPUT and INFILE ?
Mention what is PROC in SAS?
What is the basic structure of the SAS base program?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming