我可以通过ggplot2
轻松转换由plotly::ggplotly()
创建的图,如下所示:
library(tidyverse)
ggplot(as_tibble(iris), aes(x=Sepal.Width, y=Petal.Length, color=Species)) + geom_point()
plotly::ggplotly()
我希望下面的方法能够起作用,以使点出现在图形的每个面上。
ggplot(as_tibble(iris), aes(x=Sepal.Width, y=Petal.Length)) + facet_wrap(~Species)+ geom_point()
plotly::ggplotly()
此ggplot2
情节:
转换为:
因此它不起作用,仅返回没有点的正确切面的轴。
有解决方法吗?
版本:
R 3.6.1
RStudio 1.2.1335
tidyverse 1.2.1
ggplot2 3.2.1
tibble 2.0.1
plotly 4.9.0