Hi Statalisters,
I was hoping someone might be able to help with this. I have run a mixed model analysis of a cross-over experimental study looking at the effect of activity breaks vs. sitting on some acute biomarker responses (GLP1 and GIP iAUC's). I have presented the overall response to each of the three conditions, adjusted for a few covariates and baseline variables, in bar charts (or 'detonator plots'). A reviewer has suggested I used a different plot to better represent the data (I guess by showing individual data points so as to be more transparent (e.g. they referred to this and this paper).
I agree this would be a good thing to do and a more transparent way to present the data, but I am wondering how best to do this on the modelled data (i.e. with models adjusting for other variables like age, bmi, etc). I was thinking I could show the raw individual iAUC values for each participant per condition as dot points on the plot to show spread of data, then still also present the mean effect and SEM (or 95% CI), but that doesn't seem quite right given the mean effect is based on modelled data (adjusting for covariates and baseline values, etc). I am wondering if this modelled data can be pulled out from the mixed model, or best just to find a different way to present the individual data and not just the detonator plot?
CONTEXT
Stats section:
Postprandial GLP-1 and GIP responses during each trial were summarised as mean values and total and net incremental area under the curve (tAUC, iAUCnet), calculated using the trapezoidal method. Generalised linear mixed-models with random intercepts examined the differential effects of the experimental conditions on all summary outcomes using Stata 14 (Stata-Corp LP), adjusting for potential covariates explaining residual outcome variance (age, BMI, sex), baseline values, and period effects (treatment order). Sex-by-condition interactions were tested for each outcome.
Results
Figure 1 shows mean plasma GLP-1 and GIP concentrations across the three conditions (n=23 participants; 14 males; 9 females). Overall (6.5 hours) and meal-specific tAUC and iAUCnet were significantly lower in LW and SRA versus SIT for GIP, but not for GLP-1 (Figure 1; Table 1). No significant differences were observed between the LW and SRA conditions.

Mixed model Example CODE to compare the conditions. Is there a way to get individual data estimates to also plot perhaps behind the bar charts?....
*******************venous GIP analysis**************************
mixed ALLtotalAUC_gip_hr i.condition gip_baseline age i.sex bmi i.trialorder || id: , mle var
margins i.condition
pwcompare i.condition, mcompare(noadjust) effects
** GENDER INTERACTION **
mixed ALLtotalAUC_gip_hr i.condition##i.sex gip_baseline age bmi i.trialorder || id: , mle var
testparm i.condition##i.sex
margins i.condition##i.sex
pwcompare i.condition##i.sex, mcompare(noadjust) effects
Thanks!
I was hoping someone might be able to help with this. I have run a mixed model analysis of a cross-over experimental study looking at the effect of activity breaks vs. sitting on some acute biomarker responses (GLP1 and GIP iAUC's). I have presented the overall response to each of the three conditions, adjusted for a few covariates and baseline variables, in bar charts (or 'detonator plots'). A reviewer has suggested I used a different plot to better represent the data (I guess by showing individual data points so as to be more transparent (e.g. they referred to this and this paper).
I agree this would be a good thing to do and a more transparent way to present the data, but I am wondering how best to do this on the modelled data (i.e. with models adjusting for other variables like age, bmi, etc). I was thinking I could show the raw individual iAUC values for each participant per condition as dot points on the plot to show spread of data, then still also present the mean effect and SEM (or 95% CI), but that doesn't seem quite right given the mean effect is based on modelled data (adjusting for covariates and baseline values, etc). I am wondering if this modelled data can be pulled out from the mixed model, or best just to find a different way to present the individual data and not just the detonator plot?
CONTEXT
Stats section:
Postprandial GLP-1 and GIP responses during each trial were summarised as mean values and total and net incremental area under the curve (tAUC, iAUCnet), calculated using the trapezoidal method. Generalised linear mixed-models with random intercepts examined the differential effects of the experimental conditions on all summary outcomes using Stata 14 (Stata-Corp LP), adjusting for potential covariates explaining residual outcome variance (age, BMI, sex), baseline values, and period effects (treatment order). Sex-by-condition interactions were tested for each outcome.
Results
Figure 1 shows mean plasma GLP-1 and GIP concentrations across the three conditions (n=23 participants; 14 males; 9 females). Overall (6.5 hours) and meal-specific tAUC and iAUCnet were significantly lower in LW and SRA versus SIT for GIP, but not for GLP-1 (Figure 1; Table 1). No significant differences were observed between the LW and SRA conditions.
Mixed model Example CODE to compare the conditions. Is there a way to get individual data estimates to also plot perhaps behind the bar charts?....
*******************venous GIP analysis**************************
mixed ALLtotalAUC_gip_hr i.condition gip_baseline age i.sex bmi i.trialorder || id: , mle var
margins i.condition
pwcompare i.condition, mcompare(noadjust) effects
** GENDER INTERACTION **
mixed ALLtotalAUC_gip_hr i.condition##i.sex gip_baseline age bmi i.trialorder || id: , mle var
testparm i.condition##i.sex
margins i.condition##i.sex
pwcompare i.condition##i.sex, mcompare(noadjust) effects
Thanks!
Comment