R/performance.wa.R

Defines functions `performance.wa`

`performance.wa` <- function(object, ...) {
    retval <- with(object, c(rmse, r.squared, avg.bias,
                             max.bias))
    names(retval) <- c("RMSE","R2","Avg.Bias","Max.Bias")
    class(retval) <- "performance"
    retval
}

Try the analogue package in your browser

Any scripts or data that you put into this service are public.

analogue documentation built on June 21, 2021, 1:08 a.m.