how to generate means for every subject;
Answers were Sorted based on User's Feedback
Answer / chandrakanth
use PROC MEANS DATA=DATA SET NAME;
VAR VARIABLE LIST;(here include for which subjects you need the mean)
run;
lemme know if you did not get it!
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / venkatesh
u will get the answer by using proc means.
ex:
a b c d
10 20 30 100
20 40 40 150
proc means data=new mean;
run;
it will give mean of a , b , c, d
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ravi
without mention var stmt in means then u will get means for all numeric variables
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / naga
Here the question is means for every subject.
In SAS terminology subject means patient so the code is
proc means data=datasetname;
by subject;
var list;
run;
| Is This Answer Correct ? | 0 Yes | 4 No |
What versions of SAS have you used (on which platforms)?
how we can create optional or required parameters in SAS macro...
What do the PUT and INPUT functions do?
What are the 3 components in sas programming?
what is the main difference between rename and label? (don't say that they both perform the same function).
what does .. meant in sas macros
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
how do u test a pros sql(works or not) without executing it?
what is _error_?
2 Answers Axis Bank, Cognizant, JPMorgan Chase,
What is the one statement to set the criteria of data that can be coded in any step?
Mention the validation tools used in SAS?
Are you familiar with special input delimiters? How are they used?