caret (version 6.0-30)

dotplot.diff.resamples: Lattice Functions for Visualizing Resampling Differences

Description

Lattice functions for visualizing resampling result differences between models

Usage

## 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], ...)

Arguments

x
an object generated by diff.resamples
data
Not used
what
levelplot only: display either the "pvalues" or "differences"
metric
a character string for which metrics to plot. Note: dotplot and levelplot require exactly two models whereas the other methods can plot more than two.
...
further arguments to pass to either densityplot, dotplot or lev

Value

  • a lattice object

Details

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.

See Also

resamples, diff.resamples, bwplot, densityplot, xyplot, splom

Examples

Run this code
#load(url("http://caret.r-forge.r-project.org/exampleModels.RData"))

resamps <- resamples(list(CART = rpartFit,
                          CondInfTree = ctreeFit,
                          MARS = earthFit))
difs <- diff(resamps)

dotplot(difs)

densityplot(difs,
            metric = "RMSE",
            auto.key = TRUE,
            pch = "|")

bwplot(difs,
       metric = "RMSE")

levelplot(difs, what = "differences")

Run the code above in your browser using DataCamp Workspace