Hi all,
I have a dataset where patients' blood pressure is taken at each visit. The visits fall either before the intervention period (pre) or after the intervention period (post). Each visit is listed in the dataset as a separate observation. I need to look at pre-post changes, but I am not sure how to approach this - should I create a pre/post set of variables (how should I do that) or can I keep the blood pressure variables as-is and use some variable to indicate which values are pre or post? Here's an example of the data:
:
Thanks!
I have a dataset where patients' blood pressure is taken at each visit. The visits fall either before the intervention period (pre) or after the intervention period (post). Each visit is listed in the dataset as a separate observation. I need to look at pre-post changes, but I am not sure how to approach this - should I create a pre/post set of variables (how should I do that) or can I keep the blood pressure variables as-is and use some variable to indicate which values are pre or post? Here's an example of the data:
ID | Encounter# | SBP | DBP | Pre/Post Intervention |
1 | 1 | 131 | 85 | Pre |
1 | 2 | 142 | 85 | Pre |
1 | 3 | 125 | 75 | Post |
1 | 4 | 120 | 70 | Post |
Thanks!
Comment