gpt4 book ai didi

r - 插入符号中的其他指标 - PPV、灵敏度、特异性

转载 作者:行者123 更新时间:2023-11-30 08:48:08 29 4
gpt4 key购买 nike

我在 R 中使用插入符号进行逻辑回归:

  ctrl <- trainControl(method = "repeatedcv", number = 10, repeats = 10, 
savePredictions = TRUE)

mod_fit <- train(Y ~ ., data=df, method="glm", family="binomial",
trControl = ctrl)

print(mod_fit)

打印的默认指标是准确性和 Cohen kappa。我想提取匹配的指标,如敏感性、特异性、阳性预测值等,但我找不到一种简单的方法来做到这一点。提供了最终模型,但它是根据所有数据进行训练的(据我从文档中可以看出),因此我无法使用它来重新预测。

混淆矩阵计算所有必需的参数,但将其作为汇总函数传递不起作用:

  ctrl <- trainControl(method = "repeatedcv", number = 10, repeats = 10, 
savePredictions = TRUE, summaryFunction = confusionMatrix)

mod_fit <- train(Y ~ ., data=df, method="glm", family="binomial",
trControl = ctrl)

Error: `data` and `reference` should be factors with the same levels.
13.
stop("`data` and `reference` should be factors with the same levels.",
call. = FALSE)
12.
confusionMatrix.default(testOutput, lev, method)
11.
ctrl$summaryFunction(testOutput, lev, method)

除了准确度和 kappa 之外,还有没有办法提取这些信息,或者以某种方式在插入符序列返回的 train_object 中找到它?

提前致谢!

最佳答案

Caret 已经具有汇总函数来输出您提到的所有指标:

defaultSummary 输出准确度和 Kappa
twoClassSummary 输出 AUC(ROC 曲线下的面积 - 参见答案的最后一行)、敏感性和特异性
prSummary 输出精度和召回率

为了获得组合指标,您可以编写自己的汇总函数,该函数结合了这三个的输出:

library(caret)
MySummary <- function(data, lev = NULL, model = NULL){
a1 <- defaultSummary(data, lev, model)
b1 <- twoClassSummary(data, lev, model)
c1 <- prSummary(data, lev, model)
out <- c(a1, b1, c1)
out}

让我们尝试声纳数据集:

library(mlbench)
data("Sonar")

在定义列车控制时,设置classProbs = TRUE非常重要,因为其中一些指标(ROC 和 prAUC)无法根据预测类别计算,而是根据预测概率计算。

ctrl <- trainControl(method = "repeatedcv",
number = 10,
savePredictions = TRUE,
summaryFunction = MySummary,
classProbs = TRUE)

现在适合您选择的模型:

mod_fit <- train(Class ~.,
data = Sonar,
method = "rf",
trControl = ctrl)

mod_fit$results
#output
mtry Accuracy Kappa ROC Sens Spec AUC Precision Recall F AccuracySD KappaSD
1 2 0.8364069 0.6666364 0.9454798 0.9280303 0.7333333 0.8683726 0.8121087 0.9280303 0.8621526 0.10570484 0.2162077
2 31 0.8179870 0.6307880 0.9208081 0.8840909 0.7411111 0.8450612 0.8074942 0.8840909 0.8374326 0.06076222 0.1221844
3 60 0.8034632 0.6017979 0.9049242 0.8659091 0.7311111 0.8332068 0.7966889 0.8659091 0.8229330 0.06795824 0.1369086
ROCSD SensSD SpecSD AUCSD PrecisionSD RecallSD FSD
1 0.04393947 0.05727927 0.1948585 0.03410854 0.12717667 0.05727927 0.08482963
2 0.04995650 0.11053858 0.1398657 0.04694993 0.09075782 0.11053858 0.05772388
3 0.04965178 0.12047598 0.1387580 0.04820979 0.08951728 0.12047598 0.06715206

在此输出中ROC实际上是ROC曲线下的面积——通常称为AUC
和AUC 是所有截止值的精确召回曲线下的面积。

关于r - 插入符号中的其他指标 - PPV、灵敏度、特异性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57146032/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com