You can use the par() function to combine multiple plots into one plot. par can be used to set or query graphical parameters.
In the par() function, you need to include the option "mfrow=c(nrows, ncols)" to specify the number of rows and columns in the plot.
Here is an example of generating a plot with 1 row and 2 columns to combine two plots.
attach(mtcars)
par(mfrow=c(1,2))
plot(wt,mpg, main="plot1")
plot(wt,disp, main="plot2")
The above code generates the following plot: