如何在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