Using RStudio 2023.06.1 Build 524, R version 4.1.2 (2021-11-01), x86_64-pc-linux-gnu (64-bit) Linux Mint.
arr = rnorm(1000, 50, 20)
par(mfrow = c(1, 3))
boxplot(arr, ylim=c(0,70), col = "red")
boxplot(arr,ylim=c(0,70), col = "#EEEEEC")
boxplot(arr,ylim=c(0,70), col = "blue")
The output is moved to the right, where one of the plots is off the pdf.
Like so:
Suggestions?