| 1. |
What Are Some Differences Between Proc Summary And Proc Means? |
|
Answer» Proc MEANS by default give you the OUTPUT in the output window and you can stop this by the option NOPRINT and can take the output in the separate file by the STATEMENT OUTPUTOUT= , But, proc summary doesn't give the default output, we have to explicitly give the output statement and then PRINT the data by giving PRINT option to see the RESULT. Proc means by default give you the output in the output window and you can stop this by the option NOPRINT and can take the output in the separate file by the statement OUTPUTOUT= , But, proc summary doesn't give the default output, we have to explicitly give the output statement and then print the data by giving PRINT option to see the result. |
|