R Plotly堆叠或填充条形图显示未正确对齐的条形图

时间:2018-06-07 09:09:24

标签: r ggplot2 ggplotly

我确实有下面描述的问题,使用填充或堆积的条形图。虽然实际的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)

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

尝试使用geom_bar(stat =“ identity”,position =“ fill”)代替geom_col。