I set par(mfrow =c(1,2)) and now everytime I plot it shows splits it into 2 pl开发者_如何学运维ots. How can I reset this to only show one plot.
Thanks so much.
You can reset the mfrow parameter
par(mfrow=c(1,1))
You can reset the plot by doing this:
dev.off()
精彩评论