An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090203/3d4f2700/attachment-0001.pl>
how to rotate y-axis tick labels
3 messages · Hong Qin, Marc Schwartz, Gabriel Ibarra
on 02/03/2009 11:01 AM Hong Qin wrote:
Hello, I need advice on how to rotate the y-axis tick labels by 90 degree clockwise. This must be a question that has been asked frequently, but I did not find it in the archived R-help messages.
See ?par and take note of 'las': # Default 'las = 0' plot(1) plot(1, las = 1) plot(1, las = 2) plot(1, las = 3) HTH, Marc Schwartz
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090203/5876f18c/attachment-0001.pl>