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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/hpc_cv.R
\docType{data}
\name{hpc_cv}
\alias{hpc_cv}
\title{Class probability predictions}
\source{
Kuhn, M., Johnson, K. (2013) \emph{Applied Predictive
Modeling}, Springer
}
\value{
\item{hpc_cv}{a data frame}
}
\description{
Class probability predictions
}
\details{
This data frame contains the predicted classes and
class probabilities for a linear discriminant analysis model fit
to the HPC data set from Kuhn and Johnson (2013). These data are
the assessment sets from a 10-fold cross-validation scheme. The
data column columns for the true class (\code{obs}), the class
prediction (\code{pred}) and columns for each class probability
(columns \code{VF}, \code{F}, \code{M}, and \code{L}). Additionally, a column for
the resample indicator is included.
}
\examples{
data(hpc_cv)
str(hpc_cv)
}
\keyword{datasets}
|