general_indices: general_indices

View source: R/indices_utils.R

general_indicesR Documentation

general_indices

Description

calculates indices to measure accuracy of a model.

Usage

general_indices(real, prediccion)

Arguments

real

the real values in traning-testing.

prediccion

the prediction values in traning-testing.

Value

a list with the Correlation, Relative Error, Mean Absolute Error and Root Mean Square Error.

Examples

real <- rnorm(45)
prediction <- rnorm(45)
model <- "KNN"
general_indices(real, prediction)


regressoR documentation built on July 9, 2023, 5:26 p.m.