gpt4 book ai didi

r - 为什么 ncol 选项在 R 中的 facet_grid 中不起作用

转载 作者:行者123 更新时间:2023-12-04 10:37:39 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Set number of columns (or rows) in a facetted plot

(1 个回答)


6年前关闭。




我正在尝试使用 facet 学习 ggplot。这是 Rstudio 中的代码

p <- ggplot(mtcars, aes(mpg, wt)) + geom_point()

# With one variable
p + facet_grid(. ~ cyl)

但是,在我添加 ncol=2 后,它显示 ncol 错误:
    p + facet_grid( ~ cyl,ncol=2)

Error in facet_grid(~cyl, ncol = 2) : unused argument (ncol = 2)

最佳答案

#use facet_wrap
p + facet_wrap( ~ cyl, ncol = 2)

关于r - 为什么 ncol 选项在 R 中的 facet_grid 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28908256/

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