
Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'diff.resamples':
densityplot(x, data, metric = x$metric, ...)## S3 method for class 'diff.resamples':
bwplot(x, data, metric = x$metric, ...)
## S3 method for class 'diff.resamples':
levelplot(x, data = NULL, metric = x$metric[1], what = "pvalues", ...)
## S3 method for class 'diff.resamples':
dotplot(x, data = NULL, metric = x$metric[1], ...)
diff.resamples
levelplot
only: display either the "pvalues"
or "differences"
dotplot
and levelplot
require exactly two models whereas the other methods can plot more than two.histogram
, densityplot
, dotp
densityplot
and bwplot
display univariate visualizations of the resampling distributions. levelplot
displays the matrix of pair-wide comparisons. dotplot
shows the differences along with their associated confidence intervals.resamples
, diff.resamples
, bwplot
, densityplot
, xyplot
, splom
#load(url("http://caret.r-forge.r-project.org/Classification_and_Regression_Training_files/exampleModels.RData"))
resamps <- resamples(list(CART = rpartFit,
CondInfTree = ctreeFit,
MARS = earthFit))
difs <- diff(resamps)
dotplot(difValues)
densityplot(difValues,
metric = "RMSE",
auto.key = TRUE,
pch = "|")
bwplot(difValues,
metric = "RMSE")
levelplot(difValues, what = "differences")
Run the code above in your browser using DataLab