https://github.com/cran/cutpointr
Raw File
Tip revision: 030e7096a6bb7c391a35b49ac6eea87ad3b6027a authored by Christian Thiele on 17 September 2019, 20:30:02 UTC
version 1.0.0
Tip revision: 030e709
auc.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/metrics.R
\name{auc}
\alias{auc}
\alias{auc.roc_cutpointr}
\alias{auc.cutpointr}
\title{Calculate AUC from a roc_cutpointr or cutpointr object}
\source{
Forked from the AUC package
}
\usage{
auc(x)

\method{auc}{roc_cutpointr}(x)

\method{auc}{cutpointr}(x)
}
\arguments{
\item{x}{Data frame resulting from the roc() or cutpointr() function.}
}
\value{
Numeric vector of AUC values
}
\description{
Calculate the area under the ROC curve using the trapezoidal rule.
}
back to top