Re: [R] x-axis label for boxplot

2012-02-08 Thread John Sorkin
--Original Message----- From: John Sorkin Sent: Wednesday, February 08, 2012 6:48 PM Cc: r-help Subject: [R] x-axis label for boxplot I am trying to produce three boxplots and label the x axis values: xvalues, yvalues, zvalues. My code is below. The labels are not below the three boxplots. If

Re: [R] x-axis label for boxplot

2012-02-08 Thread David Winsemius
On Feb 8, 2012, at 7:48 PM, John Sorkin wrote: I am trying to produce three boxplots and label the x axis values: xvalues, yvalues, zvalues. My code is below. The labels are not below the three boxplots. If you could show me how to get the labels below the columns I would be appreciative. J

Re: [R] x-axis label for boxplot

2012-02-08 Thread Robert Baer
xlab = needs to be names = see ?boxplot boxplot(jdata[,"x"],jdata[,"y"],jdata[,"z"],names=c("x values","yvalues","zvalues")) -Original Message- From: John Sorkin Sent: Wednesday, February 08, 2012 6:48 PM Cc: r-help S

[R] x-axis label for boxplot

2012-02-08 Thread John Sorkin
I am trying to produce three boxplots and label the x axis values: xvalues, yvalues, zvalues. My code is below. The labels are not below the three boxplots. If you could show me how to get the labels below the columns I would be appreciative. John jdata<-data.frame(x = rnorm(100),y=rnorm(100,1),