我确实有下面描述的问题,使用填充或堆积的条形图。虽然实际的ggplot图表完全对齐,但我在plotly中遇到了以下问题。
library(plotly)
#>
#> Attache Paket: 'plotly'
#> The following object is masked from 'package:ggplot2':
#>
#> last_plot
#> The following object is masked from 'package:stats':
#>
#> filter
#> The following object is masked from 'package:graphics':
#>
#> layout
e <- ggplot(mpg, aes(cty, hwy, fill = cyl))
f <- e + geom_col(position = "fill")
f
ggplotly(f)
任何帮助都将受到高度赞赏。
答案 0 :(得分:0)
尝试使用geom_bar(stat =“ identity”,position =“ fill”)代替geom_col。