Skip to content
Prev 58770 / 398502 Next

Boxplot plot range

How about using ylim?

foo <- rnorm(100, 0, 1)
boxplot(foo, ylim = c(-5, 5))

HTH, Andy