将ggplotly和ggplot组合在一起吗?

问题描述 投票:1回答:1

是否可以将ggplot ly和ggplot与拼凑而成?

示例

这将同时显示两个图

library(ggplot2)
library(plotly)
library(patchwork)

a <- ggplot(data.frame(1), aes(X1)) + geom_bar()
b <- ggplot(data.frame(1), aes(X1)) + geom_bar()
a + b

但是如果我们将一个转换为ggplotly,则会出错

b  <- ggplotly(b)
a + b
Error: Can't add `b` to a ggplot object.
Run `rlang::last_error()` to see where the error occurred.

是否有解决此问题的方法?

r ggplot2 plotly ggplotly patchwork
1个回答
2
投票

Plotly具有subplot功能,可以将多个图组合在一起:

library(ggplot2)
library(plotly)

df1 <-data.frame(x=1:10, y=1:10)
df2 <- data.frame(x=10:1, y=1:10)

p1<-ggplot(df1, aes(x, y)) +geom_point()
fig1<-ggplotly(p1)

p2<-ggplot(df2, aes(x, y)) +geom_line()
fig2<-ggplotly(p2)

subplot(fig1, fig2, nrows=2)

有关更多信息和示例,请参见https://plotly.com/r/subplots/。>>

© www.soinside.com 2019 - 2024. All rights reserved.