R语言 删除ggplotly中重复的水平线

4dbbbstv  于 2023-05-11  发布在  其他
关注(0)|答案(1)|浏览(129)

当我从ggplot切换到ggplotly时,“Virginica”似乎是重复的,水平线在0。

data(iris)
library(plotly)
library(ggplot2)

plot_iris <- ggplot(iris, aes(x=Petal.Width, color = Species))+geom_density(aes(y = stat(count)))
ggplotly(plot_iris)

我们看到两条蓝线,其中一条在0处,但计数良好。我怎样才能删除这条线?

blmhpbnm

blmhpbnm1#

问题可以通过在stat_density中指定geom = 'line'来解决:

plotly::ggplotly(
   ggplot(iris, aes(x = Petal.Width, color = Species)) +
     stat_density(geom = 'line')
)

相关问题