1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ResampleResult.R
\name{ResampleResult}
\alias{ResampleResult}
\title{ResampleResult object.}
\description{
A container for resample results.
}
\details{
Resample Result:
A resample result is created by resample and
contains the following object members:
\describe{
\item{task.id (\code{character(1)}):}{
Name of the Task.
}
\item{learner.id (\code{character(1)}):}{
Name of the Learner.
}
\item{measures.test (\link{data.frame}):}{
Gives you access to performance measurements
on the individual test sets. Rows correspond to sets in resampling iterations,
columns to performance measures.
}
\item{measures.train (\link{data.frame}):}{
Gives you access to performance measurements
on the individual training sets. Rows correspond to sets in resampling iterations,
columns to performance measures. Usually not available, only if specifically requested,
see general description above.
}
\item{aggr (\link{numeric}):}{
Named vector of aggregated performance values. Names are coded like
this \verb{<measure>.<aggregation>}.
}
\item{err.msgs (\link{data.frame}):}{
Number of rows equals resampling iterations
and columns are: \code{iter}, \code{train}, \code{predict}.
Stores error messages generated during train or predict, if these were caught
via \link{configureMlr}.
}
\item{err.dumps (list of list of \link{dump.frames}):}{
List with length equal to number of resampling iterations. Contains lists
of \code{dump.frames} objects that can be fed to \code{debugger()} to inspect
error dumps generated on learner errors. One iteration can generate more than
one error dump depending on which of training, prediction on training set,
or prediction on test set, operations fail. Therefore the lists have named
slots \verb{$train}, \verb{$predict.train}, or \verb{$predict.test} if relevant.
The error dumps are only saved when option \code{on.error.dump} is \code{TRUE}.
}
\item{pred (\link{ResamplePrediction}):}{
Container for all predictions during resampling.
}
\item{models [list of \link{WrappedModel}):}{
List of fitted models or \code{NULL}.
}
\item{extract (\link{list}):}{
List of extracted parts from fitted models or \code{NULL}.
}
\item{runtime (\code{numeric(1)}):}{
Time in seconds it took to execute the resampling.
}
}
The print method of this object gives a short overview, including
task and learner ids, aggregated measures and runtime for the resampling.
}
\seealso{
Other resample:
\code{\link{ResamplePrediction}},
\code{\link{addRRMeasure}()},
\code{\link{getRRPredictionList}()},
\code{\link{getRRPredictions}()},
\code{\link{getRRTaskDesc}()},
\code{\link{getRRTaskDescription}()},
\code{\link{makeResampleDesc}()},
\code{\link{makeResampleInstance}()},
\code{\link{resample}()}
Other debug:
\code{\link{FailureModel}},
\code{\link{getPredictionDump}()},
\code{\link{getRRDump}()}
}
\concept{debug}
\concept{resample}
|