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 is data _null_?
what is change analysis in sas di ? : Sas-di
What are the difference between sas functions and procedures?
what is the use of sas management console? : Sas-di
How do you convert basic cube to transaction cube and transaction cube to basic cube?
What is the command used to find missing values?
What is the purpose of trailing @ and @@? How do you use them?
What are the features of base sas system?
What are the functions used for character handling?
How many missing values are available? When might you use them?
What is difference between Global n Local Macro Variables..?
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,