获得新观察的预测(R 编程语言)

Obtaining Predictions for New Observations (R Programming Language)

我正在使用 R 编程语言。我在 R 中为这个数据集创建了一个决策树(以预测“糖尿病”列是“pos”还是“neg”):

#load libraries
library(pdp)
library(C50)

#load data
data(pima)

#remove na's
new_data = na.omit(pima)

#format data
new_data$age = as.factor(ifelse(new_data$age >30, "1", "0"))
new_data$pregnant = as.factor(ifelse(new_data$pregnant >2, "1", "0"))

#run model
tree_mod <- C5.0(x = new_data[, 1:8], rules = TRUE, y = new_data$diabetes)

这是我的问题:我正在尝试获取模型为新观察做出的“预测”列。然后我想获取此列并将其附加到原始数据集。

使用下面的link,https://cran.r-project.org/web/packages/C50/vignettes/C5.0.html,我使用了“预测”函数:

#pretend this is new data
new = new_data[1:10,]

#run predictions
pred = predict(tree_mod, newdata = new[, 1:8])

但这会产生以下错误:

Error in x[j] : invalid subscript type 'closure'

任何人都可以告诉我如何做到这一点吗?

我正在尝试创建这样的东西 ("prediction_made_by_model"):

   pregnant glucose pressure triceps insulin mass pedigree age diabetes prediction_made_by_model
4         0      89       66      23      94 28.1    0.167   0      neg                      pos
5         0     137       40      35     168 43.1    2.288   1      pos                      neg
7         1      78       50      32      88 31.0    0.248   0      pos                      neg
9         0     197       70      45     543 30.5    0.158   1      pos                      pos
14        0     189       60      23     846 30.1    0.398   1      pos                      neg
15        1     166       72      19     175 25.8    0.587   1      pos                      pos

谢谢!

我想通了。出于某种原因,这在以前不起作用:

pred = predict(tree_mod, newdata = new[, 1:8])

new$prediction_made_by_model = pred