Skip to content

Instantly share code, notes, and snippets.

View Fahim-Ahmad's full-sized avatar
🎩

Fahim Ahmad Fahim-Ahmad

🎩
View GitHub Profile
library(tidyverse)
library(patchwork)
theme_set(theme_bw())
plot_1 <- gapminder::gapminder %>%
filter(year == max(year)) %>%
group_by(continent) %>%
summarize(mean = mean(gdpPercap)) %>%
ungroup() %>%
ggplot(aes(x = continent, y = mean, fill = continent)) +