[R] mtext: rotating text

Uwe Ligges ligges at statistik.uni-dortmund.de
Fri Oct 14 16:17:34 CEST 2005


Jonathan Dushoff wrote:

> Recently, I was trying to make an inward-facing label for a vertical
> axis on the right-hand side of a plot.  The inward-facing label was
> required by a journal.  I searched R-help, but the only solution I found
> was to use text, which requires fiddling with the x-coordinate for each
> plot.  What would have been perfect is a way to rotate text in mtext.

Indeed, so we can expect a contribution?


> I had a similar problem trying to use mtext to put a vertical label on a
> vertical axis with horizontal tick labels.  

plot(1:10, las=1)
mtext("Hello", 2)

or using par():

opar <- par(las=1)
plot(1:10)
par(opar)
mtext("Hello", 2)


Uwe Ligges


> Jonathan Dushoff
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html




More information about the R-help mailing list