Skip to content
Prev 169099 / 398506 Next

how to rotate y-axis tick labels

on 02/03/2009 11:01 AM Hong Qin wrote:
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