View source: R/indices_utils.R View source: R/mod_models_utils.R
general.indices | R Documentation |
calculates indices to measure accuracy of a model.
calculates indices to measure accuracy of a model.
general.indices(real, prediccion)
general.indices(real, prediccion)
real |
the real values in traning-testing. |
prediccion |
the prediction values in traning-testing. |
a list with the Correlation, Relative Error, Mean Absolute Error and Root Mean Square Error.
a list with the Correlation, Relative Error, Mean Absolute Error and Root Mean Square Error.
real <- rnorm(45)
prediction <- rnorm(45)
model <- "KNN"
general.indices(real, prediction)
real <- rnorm(45)
prediction <- rnorm(45)
model <- "KNN"
general.indices(real, prediction)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.