Re: [R] Setting axis scale for a boxplot

2013-11-20 Thread David Arnold
Thanks, these replies worked. D. -- View this message in context: http://r.789695.n4.nabble.com/Setting-axis-scale-for-a-boxplot-tp4680704p4680821.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list htt

Re: [R] Setting axis scale for a boxplot

2013-11-18 Thread Jim Lemon
On 11/19/2013 05:57 AM, David Arnold wrote: Hi, I have this code: par(mfrow=c(3,1)) x1=rnorm(10,60,1) x2=rnorm(10,65,1) x3=rnorm(10,70,1) boxplot(x1,x2,x3,horizontal=TRUE,main="Example 1") x1=rnorm(10,60,4) x2=rnorm(10,65,4) x3=rnorm(10,70,4) boxplot(x1,x2,x3,horizontal=TRUE,main="Example 2")

Re: [R] Setting axis scale for a boxplot

2013-11-18 Thread William Dunlap
> Sent: Monday, November 18, 2013 10:58 AM > To: r-help@r-project.org > Subject: [R] Setting axis scale for a boxplot > > Hi, > > I have this code: > > par(mfrow=c(3,1)) > > x1=rnorm(10,60,1) > x2=rnorm(10,65,1) > x3=rnorm(10,70,1) > boxplot(x1,x2,x3,horizontal=T

[R] Setting axis scale for a boxplot

2013-11-18 Thread David Arnold
Hi, I have this code: par(mfrow=c(3,1)) x1=rnorm(10,60,1) x2=rnorm(10,65,1) x3=rnorm(10,70,1) boxplot(x1,x2,x3,horizontal=TRUE,main="Example 1") x1=rnorm(10,60,4) x2=rnorm(10,65,4) x3=rnorm(10,70,4) boxplot(x1,x2,x3,horizontal=TRUE,main="Example 2") x1=rnorm(10,60,9) x2=rnorm(10,65,9) x3=rnorm