Re: [R] histogram tick labels

2008-06-09 Thread S Ellison
Lawrence, use hist(..., axes=F) then put your own axis on with axis(1,...) Example: y<-rnorm(200) hist(y,axes=F) axis(2) axis(1, at=seq(-3,3,1)) Steve E >>> "Lawrence Hanser" <[EMAIL PROTECTED]> 06/09/08 7:02 AM >>> Dear Friends, I am doing a rather simple histogram on a vector of data, MR. I

[R] histogram tick labels

2008-06-08 Thread Lawrence Hanser
Dear Friends, I am doing a rather simple histogram on a vector of data, MR. I set breaks for the intervals: hist(MR,breaks=c(0, 2.9, 5.9, 8.9, 11.9,14.9, 17.9, 20.9)) My question is, how do I change the labels on the tick marks? I have looked at ?hist and can't find a clue... Thanks in advanc