Nothing
#' Single-Reader Multi-Case ROC Analysis
#'
#' Estimation and comparison of ROC performance metrics for single-reader
#' multi-case studies.
#'
#' @param response response metric expressed in terms of a package-supplied
#' performance \code{\link[=metrics]{metric}}.
#' @param test variable of test identifiers.
#' @param case variable of case identifiers.
#' @param data data frame containing the \code{response}, \code{test}, and
#' \code{case} variables.
#' @param cov function, function call, or character string naming the
#' \code{\link[=cov_methods]{method}} to use in calculating performance
#' metric covariances.
#'
#' @return
#' Returns an \code{\link{mrmc}} class object.
#'
#' @seealso \code{\link{metrics}}, \code{\link{cov_methods}},
#' \code{\link{parameters}}, \code{\link{plot}}, \code{\link{roc_curves}},
#' \code{\link{summary}}
#'
#' @examples
#' VanDyke1 <- subset(VanDyke, reader == "1")
#' est <- srmc(empirical_auc(truth, rating), treatment, case, data = VanDyke1)
#' plot(est)
#' summary(est)
#'
srmc <- function(response, test, case, data, cov = jackknife) {
args <- c(substitute(response), substitute(test), substitute(case))
data <- data[unique(unlist(mapply(all.vars, args)))]
data <- cbind(data, reader = 1)
names(data) <- make.unique(names(data), sep = "_")
reader <- as.name(tail(names(data), 1))
object <- eval(substitute(
mrmc(
response = response, test = test, reader = fixed(reader), case = case,
data = data, cov = cov
)
))
object$call <- match.call()
object
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.