如何在 ggpairs 函数中定义小平面轴限制

how to define facet axis limits in ggpairs function

有一个 ggpairs 功能,如何将下部面的范围限制为例如x 和 y 为 0.5?

library(GGally)

xy <- data.frame(matrix(runif(4 * 1000), ncol = 4))

ggpairs(xy)

您需要定义一个绘制(一个方面)的函数。你可以在这里使用 ggplot 来疯狂。参见 this similar question

limitRange <- function(data, mapping, ...) { 
  ggplot(data = data, mapping = mapping, ...) + 
    geom_point(...) + 
    geom_smooth(method = "lm", se = FALSE) +
    scale_y_continuous(limits = c(0, 0.5)) +
    scale_x_continuous(limits = c(0, 0.5)) 
}

# This is how you specify which part of the image will be
# plotted using your function.
ggpairs(xy, lower = list(continuous = limitRange))