Open
Description
Hello,
library(plotly)
p <- mtcars %>% ggplot(aes(x = mpg, y = cyl, frame = hp)) + geom_bar(stat = "identity")
ggplotly(p)
This throws an error: Error in -data$group: invalid argument to unary operator
. I'm using the latest versions of the packages, and R 3-5-3.
Previously that worked: I have tried with R 3-3-2, ggplot2 2-2-1 and plotly 4-6-0, and this works.