I know I can use par(mfrow=c(1, 2)) to create a plot with a split screen. However, I’d really like to create a plot where 2/3 of the window is used to plot one graph, and 1/3 of the window is used to plot another. Is this possible?
I know I can use par(mfrow=c(1, 2)) to create a plot with a split
Share
You need to use function
layoutinstead ofparhere, with argumentwidths:See
?layoutfor more informations.