if you want to split the plot into two columns (2 plots next to each other), you can do it like this:
par(mfrow=c(1,2))plot(x)plot(y)
if you want to split the plot into two columns (2 plots next to each other), you can do it like this:
par(mfrow=c(1,2))plot(x)plot(y)