I am trying to combine multiple (four) scatter plots into one figure (but not a scatterplot matrix). I am making the individual scatter plots with the scatterplot()
function of the car
package. I used to be able to combine the four plots using either the layout()
or par()
function. However, now when I try to do this in Rstudio, it just displays the four plots sequentially. I'm not sure if this is because of the newer versions of R or Rstudio.
Here is an example using the mtcars dataset:
par(mfrow=c(2,2), oma=c(1,1,2,1), mar=c(4,4,0,1), cex.lab=1, cex.axis=0.8)
scatterplot(mpg ~ disp, data=mtcars, smooth=F, boxplots=F, xlab="", ylab="mpg", grid=F)
scatterplot(mpg ~ wt, data=mtcars, smooth=F, boxplots=F, xlab="", ylab="", grid=F)
scatterplot(hp ~ disp, data=mtcars, smooth=F, boxplots=F, xlab="hp", ylab="mpg", grid=F)
scatterplot(hp ~ wt, data=mtcars, smooth=F, boxplots=F, xlab="Weight", ylab="", grid=F)
I am running R 3.4.2, RStudio 1.1.453, on Windows 10. Any pointers would be appreciated.
You can try
plot_grid
fromcowplot
package. Note thatcowplot
requiresR 3.5.0
.Edit: to clarify, you need the development version of
cowplot
on GitHub