algo_effectiveness_poly {airt} | R Documentation |
Computes the actual and predicted effectiveness of a given algorithm.
Description
This function computes the actual and predicted effectiveness of a given algorithm for different tolerance values.
Usage
algo_effectiveness_poly(mod, num = 1)
Arguments
mod |
A fitted |
num |
The algorithm number |
Value
A list with the following components:
effective |
The |
predictedEff |
The area under the predicted effectiveness curve. |
actualEff |
The area under the actual effectiveness curve. |
#'@examples set.seed(1) x1 <- sample(1:5, 100, replace = TRUE) x2 <- sample(1:5, 100, replace = TRUE) x3 <- sample(1:5, 100, replace = TRUE) X <- cbind.data.frame(x1, x2, x3) mod <- pirtmodel(X) out <- algo_effectiveness_poly(mod$model, num=1) out
[Package airt version 0.2.2 Index]