Created
May 12, 2020 14:47
-
-
Save dgkeyes/51c85e0c3429224f00012acf0a719587 to your computer and use it in GitHub Desktop.
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
iris %>% | |
group_by(Species) %>% | |
summarize(mean_petal_width = mean(Petal.Width)) %>% | |
ungroup() %>% | |
ggplot(aes(Species, mean_petal_width)) + | |
geom_col() + | |
theme_ipsum() + | |
labs(x = NULL, | |
y = NULL, | |
title = "Average petal width of irises by species") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment