Skip to contents

Returns a named list of threshold values used by benchmark pass/fail logic.

Usage

defaultBenchmarkThresholds(profile = c("balanced", "strict", "lenient"))

Arguments

profile

Threshold profile: "balanced" (default), "strict", or "lenient".

Value

Named list with threshold fields: rmse_max, mae_max, bias_abs_max, cor_min, icc_min.

References

Shrout PE, Fleiss JL (1979). "Intraclass Correlations: Uses in Assessing Rater Reliability." Psychological Bulletin, 86(2), 420-428.

See also

benchmarkAgreement() for computing agreement metrics, runBenchmarkSuite() for running a full benchmark suite.

Examples

defaultBenchmarkThresholds()
#> $rmse_max
#> [1] 0.05
#> 
#> $mae_max
#> [1] 0.04
#> 
#> $bias_abs_max
#> [1] 0.02
#> 
#> $cor_min
#> [1] 0.95
#> 
#> $icc_min
#> [1] 0.9
#>