what is the difference between proc means and proc summary?
Answers were Sorted based on User's Feedback
Answer / kitty
proc means has default print option where as in proc summary
to print the output in output window u need to specify print
option. in simple words proc summary with print option is
same as proc means.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / abc
proc summary without var statement gives only sum.
proc summary with var !!!to proc means
| Is This Answer Correct ? | 2 Yes | 2 No |
I have a dataset with variables empid and doj how to calculate retirement age?
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
How can a SAS WEB REPORT STUDIO USER identify which report tabs they have been permitted without entering the SAS WEB REPORT STUDIO
why is sas considered self-documenting? : Sas programming
Describe how you would pass data to macro.
what is star schema? : Sas-di
name some data transformation used in sas di? : Sas-di
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
What statement do you code to write the record to the file?
what does .. meant in sas macros
what is enterprise guide? What is the use of it? : Sas programming
What is SAS? is it a software just for use or we can creat something over there?