准确度 SD 未显示在 R 中
Accuracy SD not showing up in R
我尝试按照 https://machinelearningmastery.com/tune-machine-learning-algorithms-in-r/ 中的示例代码进行操作,但我的输出没有显示准确性和 kappa sd。我错过了什么?我的插入符号库是 Windows 10 Pro 上的 3.5.2。
我的输出是:
Random Forest
208 samples
60 predictor
2 classes: 'M', 'R'
No pre-processing
Resampling: Cross-Validated (10 fold, repeated 3 times)
Summary of sample sizes: 186, 187, 188, 187, 188, 187, ...
Resampling results:
Accuracy Kappa
0.8376335 0.6712345
在教程中没有指定如何获得带有 SD 的输出。实际上不仅仅是 rf_default
。相反,
rf_default$results
# mtry Accuracy Kappa AccuracySD KappaSD
# 1 7.745967 0.8376335 0.6712345 0.07038106 0.1426329
我尝试按照 https://machinelearningmastery.com/tune-machine-learning-algorithms-in-r/ 中的示例代码进行操作,但我的输出没有显示准确性和 kappa sd。我错过了什么?我的插入符号库是 Windows 10 Pro 上的 3.5.2。
我的输出是:
Random Forest
208 samples
60 predictor
2 classes: 'M', 'R'
No pre-processing
Resampling: Cross-Validated (10 fold, repeated 3 times)
Summary of sample sizes: 186, 187, 188, 187, 188, 187, ...
Resampling results:
Accuracy Kappa
0.8376335 0.6712345
在教程中没有指定如何获得带有 SD 的输出。实际上不仅仅是 rf_default
。相反,
rf_default$results
# mtry Accuracy Kappa AccuracySD KappaSD
# 1 7.745967 0.8376335 0.6712345 0.07038106 0.1426329