youden_points {SCOR} | R Documentation |
A function to find Youden Indices and Cutpoints for number of categories less than equal to 3.
youden_points(beta, labels, x_mat, grid_size = 100)
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. |
Youden Indices and Cut Points
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)