How to reset par(mfrow) in R

144.4k Views Asked by At

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.

3

There are 3 best solutions below

4
On BEST ANSWER

You can reset the mfrow parameter

par(mfrow=c(1,1))
3
On

You can reset the plot by doing this:

dev.off()
0
On

Both dev.off() and graphics.off() works fine for me. Good luck!