我想知道在使用ggplotly时是否可以动态更新垃圾箱数量。
以下是示例代码:
library(ggplot2)
library(plotly)
x <- data.frame(a = 1:100, b = sample(rep(1:5,20)))
test <- ggplot(x, aes(a, fill = as.factor(b))) + geom_histogram(bins = 20)
ggplotly(test)
例如,如果我从1:15放大,我希望将其分成15个条而不是3个(此处任意数量的分档)。
这有可能吗?