how to remove the white space between two plots in r

Solutions on MaxInterview for how to remove the white space between two plots in r by the best coders in the world

showing results for - "how to remove the white space between two plots in r"
Lenny
03 Mar 2019
1> par(mfrow=c(2,1))
2> par(mar=c(0,1,1,1))
3> plot(1:10)
4> par(mar=c(1,1,0,1))
5> plot(1:10)
similar questions