Skip to content

Instantly share code, notes, and snippets.

@jrosell
Created May 2, 2024 15:49
Show Gist options
  • Save jrosell/a26cd3fadf19ec1d8e34c76b423f756a to your computer and use it in GitHub Desktop.
Save jrosell/a26cd3fadf19ec1d8e34c76b423f756a to your computer and use it in GitHub Desktop.
get_mode <- \(x) {
r <- table(x)
names(r[r == max(r)])
}
# For example:
# > get_mode(c(1,2,2,3,3,4))
# 2 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment