Skip to content

Instantly share code, notes, and snippets.

@InzamamRahaman
Last active August 29, 2015 14:04
Show Gist options
  • Save InzamamRahaman/afa6dd95cde0fb33ce35 to your computer and use it in GitHub Desktop.
Save InzamamRahaman/afa6dd95cde0fb33ce35 to your computer and use it in GitHub Desktop.
mape <- function(actual, predicted) {
100 * mean(abs(actual - predicted) / actual)
}
mse <- function(actual, predicted) {
mean((actual - predicted) ^ 2)
}
mae <- function(actual, predicted) {
mean(abs(actual - predicted))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment