как определить пределы оси фасет в функции ggpairs - PullRequest
0 голосов
/ 13 ноября 2018

Имея функцию ggpairs, как можно ограничить диапазон нижних граней, например, 0,5 для x и y?

library(GGally)

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

ggpairs(xy)

enter image description here

1 Ответ

0 голосов
/ 13 ноября 2018

Вам нужно определить функцию, которая строит график (один фасет).Вы можете сойти с ума с ggplot здесь.См. этот похожий вопрос .

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))

enter image description here

...