GAMLSS拟合连续分布练习1-代码及注释

#GAMLSS练习1
#a)Load the abdominal data and print the variable names
data(abdom)
names(abdom)
#b)Fit the normal distribution model using pb() to fit P-spline smoothers for the predictors
#for mu and sigma with automatic selection of smoothing parameters
mNO<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=NO)
#c) Try fitting alternative distributions instead of the normal
#two parameters distributions
mGA<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=GA)
mIG<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=IG)
mGU<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=GU)
mRG<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=RG)
mLO<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=LO)
#three parameters distributions
mPE<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=PE)
mTF<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=TF)
mBCCG<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=BCCG)
#four parameters distributions
mBCT<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=BCT)
mBCPE<-gamlss(y~pb(x),sigma.fo=~pb(x),data=abdom,family=BCPE)
#d)Compare the fitted models using GAIC with each of the penalties k=2,k=3 and k=log(length(abdom$y))
GAIC(mNO,mGA,mIG,mGU,mRG,mLO,mPE,mTF,mBCCG,mBCT,mBCPE,k=2)
GAIC(mNO,mGA,mIG,mGU,mRG,mLO,mPE,mTF,mBCCG,mBCT,mBCPE,k=3)
GAIC(mNO,mGA,mIG,mGU,mRG,mLO,mPE,mTF,mBCCG,mBCT,mBCPE,k=log(length(abdom$y)))
#e)For your chosen model look at the total effective degrees of freedom,plot the fitted 
#parameters and plot the data and fitted mu against x
mLO$mu.df
mLO$sigma.df
fittedPlot(mLO,x=abdom$x)
plot(y~x,data=abdom)
lines(fitted(mLO)~x,data=abdom,col="red")
wp(mLO,xvar=abdom$x,ylim.worm=1.5)#查看残差图
#g)For your chosen model look at the centile curves
centiles(mLO,abdom$x,cent=c(0.4,2.10,25,50,75,90,98,99.6))
  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值