gpt4 book ai didi

r - 设置多面图中的列(或行)数

转载 作者:行者123 更新时间:2023-12-03 21:42:02 24 4
gpt4 key购买 nike

我有一个像这样的多面情节:

ggplot(mtcars, aes(x = hp, y = mpg)) +
geom_point() +
facet_grid(. ~ carb)

enter image description here
但是,该图太宽而无法清晰阅读。

我希望能够将最右边的三个位置放置在最左边的三个位置以下,即,这些小平面应位于三列*这样的两行中。

1   2   3

4 5 6


是否可以设置构面的布局,即使用 facet_grid()设置列(或行)数?

facet_grid上的文档似乎并不表明这是可能的。

谢谢您的帮助 :-)

最佳答案

您可以在ncol中使用nrow(或facet_wrap)参数:

ggplot(mtcars, aes(x = hp, y = mpg)) +
geom_point() +
facet_wrap(~ carb, ncol = 3)

enter image description here

关于r - 设置多面图中的列(或行)数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2108484/

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