starwars %>% drop_na() %>% ggplot(aes(hair_color, height, fill = hair_color)) + geom_col() + theme_nice() + scale_x_discrete(labels = scales::label_wrap(8))
starwars %>% drop_na() %>% ggplot(aes(sex, height, color = sex)) + geom_point() + theme_nice() + scale_x_discrete(labels=c('F', 'M'))