我试图把三块土地合并为三个小组,一个数字。 由于三个小组在轴心上拥有相同数据,我谨去除第1和2号地的轴和标签。 然而,我遇到了一个问题,即1和2号地块的地块面积远远大于对地块的面积。 3. 。 我如何确定这一点?
library(ggplot2)
library(ggpubr)
# Generate synthetic data
set.seed(123)
df1 <- data.frame(x = 1:10, y = rnorm(10))
df2 <- data.frame(x = 1:10, y = rnorm(10))
df3 <- data.frame(x = 1:10, y = rnorm(10))
# Create plots
p1 <- ggplot(df1, aes(x, y)) + geom_point() + labs(title = "Plot 1")
p2 <- ggplot(df2, aes(x, y)) + geom_point() + labs(title = "Plot 2")
p3 <- ggplot(df3, aes(x, y)) + geom_point() + labs(title = "Plot 3")
# Arrange plots using ggarrange
ggarrange(
p1 + rremove(c("x.text")) + rremove("xlab"),
p2 + rremove("x.text") + rremove("xlab"),
p3,
labels = c("A", "B", "C"),
common.legend = TRUE,
legend = "bottom",
nrow = 3
)