[R] Centering labels on X-axis
Jim Lemon
jim at bitwrit.com.au
Sat Oct 20 11:15:10 CEST 2012
On 10/20/2012 01:39 AM, YAddo wrote:
> Dear all:
> I am trying to center labels on my plot with not much success. I have tried
> text(), mtext() but it's not working. I think I am using the wrong function
> for my task.
>
> Any help will be appreciated.
>
> My working codes.
> axis(1,
> at=c(1,2,3,4,5),font.lab=2,cex.axis=1.5,cex.lab=3,label=c("W0","CWH2","CWHmc","CH2","CHmc")
> ,text=c(1.5,2.5,3.5,4.5,5.5))
>
Hi YAddo,
Perhaps the most common problem with getting the positions of axis
labels right occurs with barplots. The bars in the standard "barplot"
function are not centered on integer values, but the centers are
returned from the function:
barpos<-barplot(...)
axis(1,at=barpos,...)
Is this the problem you are having?
Jim
More information about the R-help
mailing list