Search code examples
rplotresetr-base-graphics

How to reset par(mfrow) in R


I set par(mfrow =c(1,2)) and now everytime I plot it shows splits it into 2 plots. How can I reset this to only show one plot.

Thanks so much.


Solution

  • You can reset the mfrow parameter

    par(mfrow=c(1,1))