6daf6f4e |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/AUC_metric_class.R
\name{AUC}
\alias{AUC}
|
d0f81a51 |
\title{Area under ROC curve}
|
6daf6f4e |
\usage{
AUC(...)
}
\arguments{
|
d0f81a51 |
\item{...}{Additional slots and values passed to \code{struct_class}.}
|
6daf6f4e |
}
\value{
|
5d51daa4 |
A \code{
AUC
} object. This object has no \code{output} slots.
|
6daf6f4e |
}
\description{
|
d0f81a51 |
The area under the ROC curve of a classifier is estimated using the trapezoid method.
|
6daf6f4e |
}
|
09388373 |
\section{Inheritance}{
A \code{AUC} object inherits the following \code{struct} classes: \cr\cr
|
55546c0b |
\verb{[AUC]} >> \verb{[metric]} >> \verb{[struct_class]}
|
09388373 |
}
|
6daf6f4e |
\examples{
|
09388373 |
M = AUC()
|
6daf6f4e |
D = iris_DatasetExperiment()
XCV = kfold_xval(folds=5,factor_name='Species') *
(mean_centre() + PLSDA(number_components=2,factor_name='Species'))
MET = AUC()
XCV = run(XCV,D,MET)
}
|