Hello, Statalist:
I am collecting functional status data (using the PROMIS-29 survey) from a random sample of patients from 40 different practices. Each practice contributes ~75 patients. I also have some practice-level descriptors that are the opinions (our practice is good/poor/indifferent at this or that function using the PIP survey) of a convenience sample of practice staff. Each practice contributes about 4 opinions in numeric form. I am interested in the relationship between the the PIP scores (N=160) and the PROMIS scores (N=3000) adjusting for the clustering within practice (N=40). I am using Stata 15.1. I think a linear model is reasonable.
One thought is to aggregate the PIP scores within practice (perhaps using the mean or median of the practice-level PIP) as the predictor, the PROMIS as the outcome, and adjust for clustering within practice:
but this assumes there is no variance in the PIP scores within practice.
Is there a better way to specify the model, perhaps hierarchically, so that the overlapping clusters are respected?
Thanks for your help!
Ben Littenberg
University of Vermont
I am collecting functional status data (using the PROMIS-29 survey) from a random sample of patients from 40 different practices. Each practice contributes ~75 patients. I also have some practice-level descriptors that are the opinions (our practice is good/poor/indifferent at this or that function using the PIP survey) of a convenience sample of practice staff. Each practice contributes about 4 opinions in numeric form. I am interested in the relationship between the the PIP scores (N=160) and the PROMIS scores (N=3000) adjusting for the clustering within practice (N=40). I am using Stata 15.1. I think a linear model is reasonable.
One thought is to aggregate the PIP scores within practice (perhaps using the mean or median of the practice-level PIP) as the predictor, the PROMIS as the outcome, and adjust for clustering within practice:
Code:
regress promis pip_median, cluster(practice)
Is there a better way to specify the model, perhaps hierarchically, so that the overlapping clusters are respected?
Thanks for your help!
Ben Littenberg
University of Vermont
Comment