R function to keep rows belonging to top n groups of a certain column
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
keep_top_n <- function(df, col, n = 10) { | |
semi_join(df, head(count_(df, col, sort = TRUE), n)) | |
} | |
data(mpg) | |
# All car models | |
mpg %>% nrow() | |
# Just car models of top three manufacturers | |
mpg %>% keep_top_n(~manufacturer, 3) %>% nrow() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment