Skip to content

Instantly share code, notes, and snippets.

@xuanlongma
Last active December 14, 2015 11:50
Show Gist options
  • Save xuanlongma/5082349 to your computer and use it in GitHub Desktop.
Save xuanlongma/5082349 to your computer and use it in GitHub Desktop.
compute RMSE (Root Mean Squared Error)
## RMSE: Root Mean Squared Error
## obs: observations
## pred: predictions
fun.rmse <- function(obs, pred) {
sqrt(mean((obs-pred)^2))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment