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
How are numeric and character missing values represented internally?
Explain the difference between informat and format with an example.
What is the difference between nodupkey and nodup options?
What do you code to create a macro? : sas-macro
name some data transformation used in sas di? : Sas-di
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
What would be the value of month at the end of data step execution and how many observations would be there?
Tell e how how dealt with..
How do you control the number of observations and/or variables read or written?
Which command is used to perform sorting in sas program?
How do you use the do loop if you don’t know how many times you should execute the do loop?
How do you delete duplicate observations in sas?
How can you create a macro variable with in data step? : sas-macro
what versions of sas have you used (on which platforms)? : Sas programming
How will you generate test data with no input data?