SLIDE 35 Introduction The General Polynomial Growth Model A Linear Growth Model An Example — Early Childhood Intervention Multilevel Modeling Results Plotting Model Trends Examining Model Assumptions
Plotting Model Trends
> pdf( ”ModelFitPanel.pdf ”) > par(mfrow = c (1 ,3)) > #Plots > #Model B > f i x e f . b ← fixef ( model.b ) > f i t . b ← f i x e f . b [ [ 1 ] ] + time [ 1 : 3 ] ∗ f i x e f . b [ [ 2 ] ] > plot ( alcohol1 $age [ 1 : 3 ] , f i t . b , ylim=c (0 , 2) , type=”b” , + ylab=”predicted alcuse ” , xlab=”age ”) > t i t l e ( ”Model B \n Unconditional growth model ”) > #Model C > f i x e f . c ← fixef ( model.c ) > f i t . c 0 ← f i x e f . c [ [ 1 ] ] + time [ 1 : 3 ] ∗ f i x e f . c [ [ 3 ] ] > f i t . c 1 ← f i x e f . c [ [ 1 ] ] + f i x e f . c [ [ 2 ] ] + + time [ 1 : 3 ] ∗ f i x e f . c [ [ 3 ] ] + + time [ 1 : 3 ] ∗ f i x e f . c [ [ 4 ] ] > plot ( alcohol1 $age [ 1 : 3 ] , f i t . c 0 , ylim=c (0 , 2) , type=”b” , + ylab=”predicted alcuse ” , xlab=”age ”) > lines ( alcohol1 $age [ 1 : 3 ] , f i t . c 1 , type=”b” , pch=17) > t i t l e ( ”Model C \n Uncontrolled e f f e c t s
> legend (14 , 2 , c ( ”COA=0” , ”COA=1”)) > #Model E > f i x e f . e ← fixef ( model.e ) > f i t . e c 0 p 0 ← f i x e f . e [ [ 1 ] ] + .655 ∗ f i x e f . e [ [ 3 ] ] + + time [ 1 : 3 ] ∗ f i x e f . e [ [ 4 ] ] + + .655 ∗time [ 1 : 3 ] ∗ f i x e f . e [ [ 5 ] ] > f i t . e c 0 p 1 ← f i x e f . e [ [ 1 ] ] + 1 .381 ∗ f i x e f . e [ [ 3 ] ] + + time [ 1 : 3 ] ∗ f i x e f . e [ [ 4 ] ] + + 1 .381 ∗time [ 1 : 3 ] ∗ f i x e f . e [ [ 5 ] ] > f i t . e c 1 p 0 ← f i x e f . e [ [ 1 ] ] + f i x e f . e [ [ 2 ] ] + .655 ∗ f i x e f . e [ [ 3 ] ] + + time [ 1 : 3 ] ∗ f i x e f . e [ [ 4 ] ] + + .655 ∗time [ 1 : 3 ] ∗ f i x e f . e [ [ 5 ] ] > f i t . e c 1 p 1 ← f i x e f . e [ [ 1 ] ] + f i x e f . e [ [ 2 ] ] + 1 .381 ∗ f i x e f . e [ [ 3 ] ] + + time [ 1 : 3 ] ∗ f i x e f . e [ [ 4 ] ] + + 1 .381 ∗time [ 1 : 3 ] ∗ f i x e f . e [ [ 5 ] ] > plot ( alcohol1 $age [ 1 : 3 ] , f i t . e c 0 p 0 , ylim=c (0 , 2) , type=”b” , + ylab=”predicted alcuse ” , xlab=”age ” , pch=2) > lines ( alcohol1 $age [ 1 : 3 ] , f i t . e c 0 p 1 , type=”b” , pch=0) > lines ( alcohol1 $age [ 1 : 3 ] , f i t . e c 1 p 0 , type=”b” , pch=17) > lines ( alcohol1 $age [ 1 : 3 ] , f i t . e c 1 p 1 , type=”b” , pch=15) > t i t l e ( ”Model E \n ∗ Final ∗ model ”) > legend (14 , 2 , c ( ”COA=0, low peer ” , ”COA=0, high peer ” , + ”COA=1, low peer ” , ”COA=1, high peer ”)) > dev.off ()
Multilevel The Multilevel Change Model