当我从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处,但计数良好。我怎样才能删除这条线?
blmhpbnm1#
问题可以通过在stat_density中指定geom = 'line'来解决:
stat_density
geom = 'line'
plotly::ggplotly( ggplot(iris, aes(x = Petal.Width, color = Species)) + stat_density(geom = 'line') )
1条答案
按热度按时间blmhpbnm1#
问题可以通过在
stat_density
中指定geom = 'line'
来解决: