gpt4 book ai didi

r - 如何在 ggpairs 函数中定义刻面轴限制

转载 作者:行者123 更新时间:2023-12-04 01:21:17 33 4
gpt4 key购买 nike

有一个 ggpairs 函数,如何将较低面的范围限制为例如x 和 y 为 0.5?

library(GGally)

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

ggpairs(xy)

enter image description here

最佳答案

您需要定义一个绘图(一个方面)的函数。你可以在这里疯狂地使用 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))

enter image description here

关于r - 如何在 ggpairs 函数中定义刻面轴限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53277656/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com