Вам нужно определить функцию, которая строит график (один фасет).Вы можете сойти с ума с 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))