get_rmsep {MUVR2}R Documentation

Get RMSEP

Description

Get Root Mean Square Error of Prediction (RMSEP) in classification.

Usage

get_rmsep(actual, predicted)

Arguments

actual

Vector of actual classifications of samples

predicted

Vector of predicted classifications of samples

Value

RMSEP

Examples

data("mosquito")
actual <- YR2
predicted <- sampling_from_distribution(actual)
get_rmsep(actual, predicted)

[Package MUVR2 version 0.1.0 Index]