Я получаю следующую ошибку для моего кода r
Error: `data` must be a data frame, or other object coercible by
fortify()
, не объект S3 с классом Нева
Вы случайно передали aes()
аргументу data
?
here is the R code and the error
ggplot(aes(x=reorder(word,n), y=n, fill=sentiment)) +
geom_col(show.legend = FALSE) +
facet_wrap(~sentiments, scales="free") +
coord_flip()