bvto {mlf} | R Documentation |
Provides estimated error decomposition from model predictions (mse, bias, variance).
bvto(truth, estimate)
truth |
test data vector or baseline accuractruth to test against. |
estimate |
predicted vector |
# Sample data
test <- rnorm(25, 80, 35)
predicted <- rnorm(25, 80, 50)
mlf::bvto(test, predicted)