[R] labelling barplot

2004-11-27 Thread Ross Clement
Hi. I'd like to produce a barplot where only the lowest value and the highest value are labelled on the x-axis. E.g. I might have a list of numbers and frequencies: barplot( c( 2, 2, 0, 4, 2 ), names.arg=c( 1, 2, 3, 4, 5 ) ) where the data is a set of counts for some values between 1 and 5.

Re: [R] labelling barplot

2004-11-27 Thread Marc Schwartz
On Sat, 2004-11-27 at 08:59 +, Ross Clement wrote: Hi. I'd like to produce a barplot where only the lowest value and the highest value are labelled on the x-axis. E.g. I might have a list of numbers and frequencies: barplot( c( 2, 2, 0, 4, 2 ), names.arg=c( 1, 2, 3, 4, 5 ) ) where