Skip to content

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:
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