Displaying 1 result from an estimated 1 matches for "initiationdate".
2011 Oct 17
1
Plotting GEE confidence bands using "predict"
...ary(model1<-geeglm(WEIGHT~DISTANCE,
id=MOTHER,data=df,corstr="exchangeable")))
#I've included part of the
model output
here
<Coefficients:
<  
                  Estimate Std.err
  Wald         Pr(>|W|)  
 
<(Intercept)     15.8702  0.4416  
1291.8  < 2e-16 ***
<Initiationdate  -0.0664
 0.0157   17.9          2.4e-05
***
<
<Estimated Scale
Parameters:
<
<            Estimate
Std.err
<(Intercept)     5.78  
 2.46
plot(df$DISTANCE,df$WEIGHT)
abline(model1)
x<-seq(min(df$DISTANCE),max(df$DISTANCE),l=1000)
y<-predict(model1,data.frame(DISTANC...