作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
klaR 包-6ren">
我确实使用包 klaR
将朴素贝叶斯应用于玩具数据集,一切正常。
接下来,我想使用 method="nb"
复制与 caret
相同的分析,这实际上只是 NaiveBayes
的包装器> klaR 包中的函数。
但是,后一种估计不起作用。我确实收到一条错误消息。
Error in NaiveBayes.default(x, y, usekernel = FALSE, fL = param$fL, ...) :
Zero variances for at least one class in variables: x1_disc_46, x1_disc_810, x2_disc_46
Timing stopped at: 0.01 0 0.02
我知道玩具数据集的局限性。然而,当使用 klaR
包进行分析时,我想知道如何使用 caret
复制完全相同的分析?
这是代码:
# Data
d <- structure(list(Y = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L,
2L, 1L), .Label = c("0", "1"), class = "factor"), x1_disc = structure(c(1L,
2L, 1L, 2L, 3L, 4L, 4L, 5L, 2L, 4L), .Label = c("_02", "_24",
"_46", "_68", "_810"), class = "factor"), x2_disc = structure(c(1L,
1L, 1L, 1L, 2L, 3L, 3L, 3L, 1L, 2L), .Label = c("_02", "_24",
"_46"), class = "factor")), .Names = c("Y", "x1_disc", "x2_disc"
), row.names = c(NA, -10L), class = "data.frame")
# Works(klaR)
library(klaR)
fit2 <- NaiveBayes(Y ~ x1_disc + x2_disc, usekernel = FALSE, fL = 0, data=d)
predict(fit2, d, threshold = 0)
# Does not work (caret)
library(caret)
model2 <- train(form=Y ~ x1_disc + x2_disc,
data=d,
method="nb",
# Uses package klaR
# (see: http://topepo.github.io/caret/train-models-by-tag.html)
trControl=trainControl(method="none"),
tuneGrid = data.frame(fL=0, usekernel=F, adjust=1))
predict(model2, d, type="prob")
最佳答案
我将我的评论作为答案,因为它部分解决了您的问题。我遇到了这个交叉验证answer建议在没有 S3 公式界面的情况下运行插入符号模型,这将是您的情况:
model2 <- train(y=d$Y, x=d[, 2:3], ...)
我不知道这样做的确切原因,而且这可能是与简历问题不同的解释,因为他们没有错误。
关于r - klaRA 和插入符号中的朴素贝叶斯,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45461395/
我是一名优秀的程序员,十分优秀!