I started working in Rmd as I prefer it's output after chunks to the console of an R script.
par(mfrow = c(x, y))
however is not working for inline output. So an R chunk with
par(mfrow = c(x, y))
boxplot()
boxplot()
etc. does not show multiple plots. boxplot()
is base R.
Is there a resource explaining why?