what is the difference between proc means and proc tabulate?
Answer Posted / paul
same statistics can be produced with both means & tabulate procedures but the difference lies in reporting/presenting the result.
eg: PROC MEANS can assign labels for Variable names but can't assign labels for statistics, whereas PROC TABULATE can assign labels for both variable names and statistics.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Tell me about % include and % eval? : sas-macro
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
what are _numeric_ and _character_ and what do they do? : Sas programming
Why and when do you use proc sql?
what is program data vector? : Sas-administrator
How would you define the end of a macro?
What will calendar procedure do?
What would be the value of month at the end of data step execution and how many observations would be there?
Explain the difference between using drop = data set option in set and data statement?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
How would you identify a macro variable?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
Describe the function and untility of the most difficult SAS macro that you have written.
How do you test for missing values?
how to debug and test the sas program? : Sas-administrator