gpt4 book ai didi

r - 基于其他列的 ggplot2 构面中的自定义轴中断

转载 作者:行者123 更新时间:2023-12-01 13:10:49 25 4
gpt4 key购买 nike

我有数据要绘制,其中 x 轴位于一列中,x 轴主要中断位于其他列中。

对于我的示例数据,我将修改 ggplot2 中的 iris 数据集。注意:lowhigh 在这里是任意计算的 - 我只选择了最小值和最大值以便于重现。

library(dplyr)
library(ggplot2)


df <- iris %>%
group_by(Species) %>%
mutate(low = min(Sepal.Length),
high = max(Sepal.Length)) %>%
ungroup()
> df
# A tibble: 150 x 7
Sepal.Length Sepal.Width Petal.Length Petal.Width Species low high
<dbl> <dbl> <dbl> <dbl> <fct> <dbl> <dbl>
1 5.1 3.5 1.4 0.2 setosa 4.3 5.8
2 4.9 3 1.4 0.2 setosa 4.3 5.8
3 4.7 3.2 1.3 0.2 setosa 4.3 5.8
4 4.6 3.1 1.5 0.2 setosa 4.3 5.8
5 5 3.6 1.4 0.2 setosa 4.3 5.8
6 5.4 3.9 1.7 0.4 setosa 4.3 5.8
7 4.6 3.4 1.4 0.3 setosa 4.3 5.8
8 5 3.4 1.5 0.2 setosa 4.3 5.8
9 4.4 2.9 1.4 0.2 setosa 4.3 5.8
10 4.9 3.1 1.5 0.1 setosa 4.3 5.8
# ... with 140 more rows

我希望为 Species 绘制 x = Sepal.Length 刻面,但只有两个主要中断是 df$mindf$max.

我无法在正确的方面取得突破。

df %>% 
ggplot(aes(x = Sepal.Length,
y = Petal.Length)) +
geom_point() +
facet_wrap(. ~ Species) +
scale_x_continuous(breaks = c(df$low, df$high))

enter image description here

如您所见,df$lowdf$high 的值应用于所有方面。我希望 facet setosa 仅在 4.3 和 5.8 时有重大突破,versicolor 仅在 4.9 和 7.0 时出现重大突破,virginica 在 4.9 和 7.0 时出现重大突破仅限 7.9。

有没有办法将 facet 变量传递给 scale_x_continuous 中的 breaks?或者我应该放弃这种方法并创建三个单独的 ggplots 并将它们与 gridExtra 合并在一起?

如有任何帮助,我们将不胜感激!

最佳答案

这是一个可能的解决方案,使用 patchwork :

library(ggplot2)
library(purrr)
library(patchwork)

df %>%
split(.$Species) %>%
map(~{
.x %>%
ggplot(aes(x = Sepal.Length,
y = Petal.Length)) +
geom_point() +
facet_wrap(~ Species) +
scale_x_continuous(breaks = c(max(.x$low), max(.x$high))) +
# assuming you want to use same y axis for each plot
scale_y_continuous(limits = c(min(df$Petal.Length), max(df$Petal.Length)))
}) %>%
reduce(`+`)

enter image description here

我认为这是最简单的方法,不需要弄乱 ggproto

关于r - 基于其他列的 ggplot2 构面中的自定义轴中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60159294/

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