[R] setting yranges of boxplots

2005-06-28 Thread Adrian L. Garcia-Lomana
Hi all, I was wondering how to create a graph (boxplot) setting the y range of the graph manually. Something like this: x - c(1:100) boxplot(x, yrange(0, 1000)) Thanks for your time, Adrian __ R-help@stat.math.ethz.ch mailing list

Re: [R] setting yranges of boxplots

2005-06-28 Thread Liaw, Andy
Something like this? boxplot(runif(100, 0, 100), ylim=c(0, 1000)) Andy From: Adrian L. Garcia-Lomana Hi all, I was wondering how to create a graph (boxplot) setting the y range of the graph manually. Something like this: x - c(1:100) boxplot(x, yrange(0, 1000)) Thanks for