Nothing
errorMeasures <- function(model = NULL, obs = NULL, pred = NULL, na.rm = TRUE, rm.dup = FALSE) {
# version 1.0 (2 Oct 2024)
obspred <- inputMunch(model, obs, pred, na.rm = na.rm, rm.dup = rm.dup)
obs <- obspred[ , "obs"]
pred <- obspred[ , "pred"]
SE <- (obs - pred) ^ 2
MSE <- mean(SE)
Brier_score <- MSE
RMSE <- sqrt(MSE)
# SSE <- sum(SE)
return(list(RMSE = RMSE, MSE = MSE, Brier_score = Brier_score))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.