how to generate means for every subject;
Answer Posted / 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 |
Post New Answer View All Answers
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
What is the purpose of trailing @ and @@? How do you use them?
What is SAS informats?
How would you determine the number of missing or nonmissing values in computations?
What is run-group processing?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
What is the command used to find missing values?
Can you suggest us materials for sdtm mapping?
What are the data types in sas?
explain what is data set in sas? : Sas-administrator
Enlist the syntax rules followed in sas statements.
What are the prime responsibilities of data integration administrator? : Sas-di
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What is interleaving in SAS?