[This article was first published on Freakonometrics - Tag - R-english, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
We’ve seen in the previous post (here) how important the *-cartesian
product to model joint effected in the regression. Consider the case of
two explanatory variates, one continuous (
- The additive model
Then, given
> reg=glm(nbre~bs(ageconducteur)+carburant+offset(exposition),
+ data=sinistres,family=”poisson”)
> ageD=data.frame(ageconducteur=seq(17,90),carburant=”D”,exposition=1)
> ageE=data.frame(ageconducteur=seq(17,90),carburant=”E”,exposition=1)
> yD=predict(reg,newdata=ageD,type=”response”)
> yE=predict(reg,newdata=ageE,type=”response”)
> lines(ageD$ageconducteur,yD,col=”blue”,lwd=2)
> lines(ageE$ageconducteur,yE,col=”red”,lwd=2)
> plot(ageD$ageconducteur,yD/yE)
- The nonadditive model
> reg=glm(nbre~bs(ageconducteur)*carburant+offset(exposition),
+ data=sinistres,family=”poisson”)
> ageD=data.frame(ageconducteur=seq(17,90),carburant=”D”,exposition=1)
> ageE=data.frame(ageconducteur=seq(17,90),carburant=”E”,exposition=1)
> yD=predict(reg,newdata=ageD,type=”response”)
> yE=predict(reg,newdata=ageE,type=”response”)
> lines(ageD$ageconducteur,yD,col=”blue”,lwd=2)
> lines(ageE$ageconducteur,yE,col=”red”,lwd=2)
is not constant any longer,
- Mixing additive and nonadditive
> reg=glm(nbre~bs(ageconducteur*(ageconducteur<50))+
+ bs(ageconducteur*(ageconducteur>=50))*carburant+offset(exposition),
+ data=sinistres,family=”poisson”)
> ageD=data.frame(ageconducteur=seq(17,90,by=.1),carburant=”D”,exposition=1)
> ageE=data.frame(ageconducteur=seq(17,90,by=.1),carburant=”E”,exposition=1)
> yD=predict(reg,newdata=ageD,type=”response”)
> yE=predict(reg,newdata=ageE,type=”response”)
> lines(ageD$ageconducteur,yD,col=”blue”,lwd=2)
> lines(ageE$ageconducteur,yE,col=”red”,lwd=2)
To leave a comment for the author, please follow the link and comment on their blog: Freakonometrics - Tag - R-english.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.