```{r code chunks example}
#| code-line-numbers: "|1,14"
#| output: false
read_csv("data/datacareer_28kjobs.csv", show_col_types = FALSE) %>%
filter(!(language == "Python")) %>%
ggplot(aes(x = popularity, y = role)) +
geom_col() +
facet_wrap(~language, ncol = 1) +
labs(x = "% of Indeed Job Ads in 2017 (N = 28,732)",
y = "Role") +
theme_classic() +
theme(text = element_text(size = 18),
axis.title = element_text(face = "bold", size = 24))
```
Comments & Markdown
This is Markdown!