我正在尝试使用R中的tweedie包中的tweedie.profile函数来估计Tweedie p-index参数的值。下面给出了正在使用的函数的示例
model.out <- tweedie.profile( formula = y1~ x1+ x2+ x3+ x4-1,
p.vec = seq(1.2,1.9, by = 0.1), link.power = 0, data = train.data,
weights = w1^p-1, offset = log(w1), fit.glm = TRUE,
do.smooth = TRUE, do.plot = TRUE, do.ci = TRUE, conf.level = 0.95)
该模型的设计权重为w1 ^(p-index参数(p)-1)但是因为我不知道p索引参数我想将p设置为当前值p tweedie.profile用于计算最大似然的值,可以调用此值,例如如w1 ^ p.vec $ value-1?谢谢你的帮助