rmse: Root Mean Square Error Calculation

Description Usage Arguments Value Examples

Description

takes difference between Original data and Predicted data as input

Usage

1
rmse(obs, pred)

Arguments

obs

numeric vector of original data

pred

numeric vector of predicted data

Value

rmseVal as Root Mean Square Error

Examples

1
2
3
4
5
## Generate 100 random numbers within some limits
x <- sample(1:7, 100, replace = TRUE)
y <- sample(1:4, 100, replace = TRUE)
z <- rmse(x, y)
z

imputeTestbench documentation built on July 6, 2019, 1:03 a.m.