I'm a new R Studio User (I've only used this for several months). I love it! I got this table where I'm comparing two poets vocabulary. I would like them to have a different color each one. I tried to change the values but had no luck. Here is my code and my results. Could you give me a hint about how could I improve this? Thank you in advance!!!
# 50 sustantivos más frecuentes
Poemas_Analizado %>%
group_by(poeta) %>%
filter(upos == "NOUN") %>%
count(lema, sort = T) %>%
mutate(lema = reorder(lema, n)) %>%
top_n(50) %>%
ggplot(aes(reorder(lema, n),n)) +
geom_col(fill = "greenyellow") +
coord_flip() +
facet_wrap(~poeta, scales = "free_y")