我试图通过遵循 Max Khun 的 Applied Predictive Modeling 书来了解插入符号的工作原理,但无法理解插入符号的混淆矩阵函数是如何工作的。
我使用 glmnet 训练了训练数据集 (training[, fullSet]),它有 8190 行和 1073 列,如下所示:
glmnGrid <- expand.grid(alpha = c(0, .1, .2, .4, .6, .8, 1),
lambda = seq(.01, .2, length = 40))
ctrl <- trainControl(method = "cv",
number = 10,
summaryFunction = twoClassSummary,
classProbs = TRUE,
index = list(TrainSet = pre2008),
savePredictions = TRUE)
glmnFit <- train(x = training[,fullSet],
y = training$Class,
method = "glmnet",
tuneGrid = glmnGrid,
preProc = c("center", "scale"),
metric = "ROC",
trControl = ctrl)
然后,我从拟合中打印了混淆矩阵:
glmnetCM <- confusionMatrix(glmnFit, norm = "none")
当我查看混淆矩阵时,我得到了以下结果:
Reference
Prediction successful unsuccessful
successful 507 208
unsuccessful 63 779
但是,我不明白为什么混淆表只有 1757 个观察值(1757 = 507 + 208 + 63 + 779),因为插入符号的confusionMatrix.train 文档说“当训练用于调整模型时,它会跟踪混淆矩阵单元保留样本的条目。” 由于训练数据集有 8190 行,我使用了 10 倍的 CV,所以我认为混淆矩阵应该基于 819 个数据点(819 = 8190 / 10),事实并非如此。
显然我不完全理解插入符号的 trainControl 或 train 是如何工作的。有人可以解释我误解了什么吗?
非常感谢你的帮助。
李英进