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
For what purposes have you used sas macros? : sas-macro
For what purpose would you use the RETAIN statement?
How do you debug and test your SAS programs?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
explain what is factor analysis? : Sas-administrator
Describe the function and utility of the most difficult SAS macro that you have written?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
Explain the purpose of substr functions in sas programming.
Which function is used to count the number of intervals between two sas dates?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
What do the put and input function do?
What is a method to debug and test your SAS program?
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.
List out some key concept of SAS
Explain data_null_?