This question already has an answer here:
Set number of columns (or rows) in a facetted plot
(1个答案)
5年前关闭。
我试图学习方面方面的ggplot。这是Rstudio中的代码作品
但是,在我添加ncol = 2后,它显示ncol错误:
(1个答案)
5年前关闭。
我试图学习方面方面的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/
10-12 17:12