Dear all,
I thank you in advance.
I have an observational question about a pre-post study.
We measured in two timepoints the size of a certain number of brain areas called a1, a2, a3, a4, etc. (OUTCOME)
The time at baseline has a value of 0, the time at the second timepoint (followup) is different for each patient.
What interests me in particular is the effect of time: that is, is the area at followup reduced compared to time 0?
My question is: would you do an analysis assuming id as a random effect, i.e.
Or would you calculate the delta and do a simple linear regression?
Which of the two options do you think describes the effect of time adjusting for baseline?
I thank you in advance.
I have an observational question about a pre-post study.
We measured in two timepoints the size of a certain number of brain areas called a1, a2, a3, a4, etc. (OUTCOME)
The time at baseline has a value of 0, the time at the second timepoint (followup) is different for each patient.
What interests me in particular is the effect of time: that is, is the area at followup reduced compared to time 0?
My question is: would you do an analysis assuming id as a random effect, i.e.
Code:
mixed OUTCOMEVAR Age Gender month Diagnosis Bilateral_tonic_clonic_seizures Response_to_treatment icv || id:
Code:
regress deltaOUTCOME month baselineoutcome
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte id float month byte(Age Gender) int Onset_months byte(Diagnosis Bilateral_tonic_clonic_seizures Response_to_treatment) double(a2 a3 a4 a5 a6 a7 a8 a9) 1 0 30 0 336 0 1 0 2.406 2.544 1.987 2.917 2.667 2.301 2.678 2.173 1 44 33 0 336 0 1 0 2.408 2.521 1.95 2.677 2.59 2.241 2.568 2.194 2 0 36 0 252 0 1 1 1.969 2.105 1.668 1.083 1.683 2.124 1.947 1.998 2 72 42 0 252 0 1 1 2.708 2.163 2.06 1.344 1.872 2.248 2.24 2.106 3 0 34 0 216 0 1 1 2.637 2.274 1.796 .944 1.3 2.115 2.273 1.829 3 38 37 0 216 0 1 1 2.516 2.092 2.457 .982 2.094 2.216 2.234 2.144 4 0 44 0 504 0 0 0 1.936 2.137 1.374 .83 1.563 1.764 2.157 1.6 4 36 47 0 504 0 0 0 1.805 1.993 2.314 1.433 1.628 1.432 1.961 2.052 5 0 49 0 408 0 1 1 1.783 2.322 1.403 .945 1.45 2.037 1.952 1.625 5 18 51 0 408 0 1 1 1.99 1.985 2.149 .942 1.599 2.005 2.107 1.973 6 0 25 0 240 0 1 0 3.064 2.445 1.973 3.265 2.84 2.258 2.913 2.362 6 66 31 0 240 0 1 0 2.731 1.656 2.286 1.459 1.88 1.787 2.025 2.241 end
Comment