gpt4 book ai didi

r - 从 R gamlss 对象预测新拟合值时出错

转载 作者:行者123 更新时间:2023-12-02 01:15:52 26 4
gpt4 key购买 nike

我有一个 gamlss 模型,我想用它来做出新的 y 预测(和置信区间),以便可视化模型与真实数据的拟合程度。我想从随机预测值的新数据集(而不是原始数据)中进行预测,但我遇到了错误消息。下面是一些示例代码:

library(gamlss)    

# example data
irr <- c(0,0,0,0,0,0.93,1.4,1.4,2.3,1.5)
lite <- c(0,1,2,2.5)
blck <- 1:8
raw <- data.frame(
css =abs(rnorm(500, mean=0.5, sd=0.1)),
nit =abs(rnorm(500, mean=0.72, sd=0.5)),
irr =sample(irr, 500, replace=TRUE),
lit =sample(lite, 500, replace=TRUE),
block =factor(sample(blck, 500, replace=TRUE))
)

# the model
mod <- gamlss(css~nit + irr + lit + random(block),
sigma.fo=~irr*nit + random(block), data=raw, family=BE)

# new data (predictors) for making css predictions
pred <- data.frame(
nit =abs(rnorm(500, mean=0.72, sd=0.5)),
irr =sample(irr, 500, replace=TRUE),
lit =sample(lite, 500, replace=TRUE),
block =factor(sample(blck, 500, replace=TRUE))
)

# make predictions
predmu <- predict(mod, newdata=pred, what="mu", type="response")

这给出了以下错误:
Error in data[match(names(newdata), names(data))] : 
object of type 'closure' is not subsettable

当我在我的真实数据上运行这个时,它给出了这个稍微不同的错误:
Error in `[.data.frame`(data, match(names(newdata), names(data))) : 
undefined columns selected

当我使用 predict没有 newdata ,它可以很好地对原始数据进行预测,如下所示:
predmu <- predict(mod, what="mu", type="response")

我使用预测错误吗?任何建议都非常感谢!谢谢你。

最佳答案

不,你没有错。我也遇到过同样的问题。

文档表明 predict 的实现不完整。这似乎是一个不完整的特性/功能的例子。

关于r - 从 R gamlss 对象预测新拟合值时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42742461/

26 4 0
文章推荐: visual-studio - Resharper 安装未检测到 VS 2017
文章推荐: express - 如何将 redis 对象从 app.js 发送到 html
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com