Regression functions

In this section all available regression metrics and related documentation is described. Common for all regression functions is that they use the class numeric.

Examples

## actual
actual <- c(1.3, 2.4, 0.7, 0.1)

## predicted
predicted <- c(0.7, 2.9, 0.76, 0.07)
SLmetrics::rmse(
    actual,
    predicted
)
[1] 0.3919503