在R中,在ggplotly中创建多列图例

时间:2017-03-19 07:17:55

标签: r ggplot2 legend plotly

如何在ggplotly中的多个列上传播图例?

答案here明确表示如何使用ggplot() - 但是当我使用ggplotly()

时,该代码似乎无法正常工作
library(datasets)
library(ggplot2)
library(plotly)

p<-ggplot(mtcars, aes(x=mpg,y=cyl)) + geom_point(aes(col=row.names(mtcars)))
p
ggplotly(p)
p2<-p + guides(col=guide_legend(ncol=3))
p2 # here we see the legend with 3 column
ggplotly(p2) # here we see the legend with only 1 column

0 个答案:

没有答案