我一直在考虑使用 par() 或 layout() 函数来组合 ggplots。是否可以使用这些功能?
假设我想为散点图绘制 ggplot,为直方图绘制 ggplot。我想结合这两个情节(不是在一个情节中)。是否适用?
我在 R 中尝试了简单的绘图,没有使用 ggplot 函数。它确实有效。
这是来自 Quick-R 的示例,链接: http: //www.statmethods.net/advgraphs/layout.html
# 4 figures arranged in 2 rows and 2 columns
attach(mtcars)
par(mfrow=c(2,2))
plot(wt,mpg, main="Scatterplot of wt vs. mpg")
plot(wt,disp, main="Scatterplot of wt vs disp")
hist(wt, main="Histogram of wt")
boxplot(wt, main="Boxplot of wt")
# One figure in row 1 and two figures in row 2
attach(mtcars)
layout(matrix(c(1,1,2,3), 2, 2, byrow = TRUE))
hist(wt)
hist(mpg)
hist(disp)
但是当我尝试使用 ggplot 并结合情节时,我没有得到输出。