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 |
what are the categories that sas informats are used to the place the data? : Sas-administrator
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
diff between nodup rec and ondup key???
Given an unsorted data set, how to read the last observation to a new data set?
How to get the repeated values by using sql in sas ?
What is interleaving in SAS?
What is the purpose of the trailing and How would you use them?
Explain by-group processing?
Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
what is in stream data in SAS?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;