par(mfrow = c(2, 2))
m <- lm(mpg ~ cyl, data = mtcars)
plot(m)
for (i in 1:8) {
plot(rnorm(100), main = sprintf("plot %d", i))
abline(h = rnorm(1), col = "red")
points(rnorm(100), col = "blue")
}
In the last plot, the bottom-left scatter plot does not show the axes as it should.
I could only reproduce this on macOS with both master and boost-beast branches but not on Ubuntu. Not sure if it occurs on Windows.
Sometimes, the axes in a plot could be missing.
In the last plot, the bottom-left scatter plot does not show the axes as it should.
I could only reproduce this on macOS with both
master
andboost-beast
branches but not on Ubuntu. Not sure if it occurs on Windows.