youden_points: Finding Youden Indices

View source: R/youden_points.R

youden_pointsR Documentation

Finding Youden Indices

Description

A function to find Youden Indices and Cutpoints for number of categories less than equal to 3.

Usage

youden_points(beta, labels, x_mat, grid_size = 100)

Arguments

beta

The parameter we do HUM based on

labels

The labels of the Columns of the data matrix.

x_mat

The Data Matrix

grid_size

The size of increment in the grid we check cutpoints against. Default value is 100.

Value

Youden Indices and Cut Points

Examples


beta <- c(-0.399,-0.155,-0.265,-0.184,
     -0.267,0.666,-0.187,0.273,0.0463,0.167,0.163,0.178)

youden_points(beta, colnames(AL), AL)



SCOR documentation built on July 9, 2023, 6:39 p.m.