我写信是为了找出返回的"linear.predictors"
stan_glm()
对象。
显然,"linear.predictors"
与用户提供的预测变量不同(文档没有帮助)。
在任何情况下,有没有办法从stan_glm()
对象获取预测值?
以下是单个预测变量(即mom_iq)示例:
library(rstanarm)
data(kidiq)
d <- kidiq
fit <-stan_glm(kid_score ~ mom_iq,
data = d,
prior = normal(0, 2.5),
prior_intercept = normal(0, 10),
prior_aux = cauchy(0, 100))
max(fit$linear.predictors) # 110.5605 # As can be seen, these are not the same
max(d$mom_iq) # 138.8931
答案 0 :(得分:0)
从stanreg-objects
的文档中不清楚哪些内容?
...
fitted.values
拟合平均值。对于GLM,线性预测变量通过反向链接函数进行变换linear.predictors
线性拟合链接比例。对于线性模型,这与拟合值相同 ...