我正在尝试使用ggplotly制作动画条形图或直方图。当我运行下面的代码时,我得到“-data $ group中的错误:一元运算符的无效参数”。但是,当我使用geom_point()而不是geom_bar(stat =“identity)时,我没有得到任何错误。我怎样才能将它作为条形图或直方图工作?
library(dplyr)
library(plotly)
plot <- mtcars %>%
ggplot(aes(x = mpg, y = cyl, frame = hp)) +
geom_bar(stat = "identity")
ggplotly(plot)