Skip to content

Instantly share code, notes, and snippets.

@rlopc
Last active August 29, 2015 14:12
Show Gist options
  • Save rlopc/39e6381f10822fbeef52 to your computer and use it in GitHub Desktop.
Save rlopc/39e6381f10822fbeef52 to your computer and use it in GitHub Desktop.
Mode <- function(x) {
ux <- unique(x)
ux[which.max(tabulate(match(x, ux)))]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment