Skip to content
Snippets Groups Projects
compute_roc_auc.Rd 504 B
Newer Older
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/receiver_operating_characteristic.R
\name{compute_roc_auc}
\alias{compute_roc_auc}
\title{Computes area under the ROC curve (AUC).}
\usage{
compute_roc_auc(dt)
}
\arguments{
Arnaud Duvermy's avatar
Arnaud Duvermy committed
\item{dt}{A data table with columns for True positive rate and False positive rate}
}
\value{
A numeric value representing the AUC.
}
\description{
This function calculates the area under the ROC curve (AUC) using specificity and sensitivity values.
}