questions;
1. Use an appropriate model to test whether there is an interaction between the plasma inorganic phosphate level measured at 10 minutes and whether or not the patient is obese. Make sure to write down your interaction model and state your conclusion.
2. Does the plasma inorganic phosphate level measured at 10 minutes confounds the association between the plasma inorganic phosphate level measured at 3 hours and whether or not the patient is obese?
3. Is there a difference in average plasma inorganic phosphate level measured at 3 hours between the control and obese patients after controlling for the measurement at 10 minutes?
I have use PROC GLM but i am not sure how to interpret this graph base on above questions. can anyone help me to understand this graph.
ods graphics on;
proc glm data=pip plot=meanplot(cl);
class group;
model level_3hr = group /solution;
lsmeans group/pdiff=all adjust=tukey cl;
run;
ods graphics off;
output:-


