如何在R中的twoord.plot中旋转Y轴标签?

时间:2013-07-29 19:49:16

标签: r labels plotrix

有谁知道如何在R中的函数twoord.plot中旋转Y轴标签?另外,如何调整Y轴标签的字体大小?

1 个答案:

答案 0 :(得分:0)

低于标准: 我刚刚选择了随两个.plot包附带的随机图。

 x <- rnorm(100,100,10)

首先需要旋转Y轴:

 par(las = 1) # rotates the y axis values for every plot you make from now on unless otherwise specified

接下来,绘制没有Y轴的图形:

 plotH(x,x,yaxt = 'n') # no Y axis

然后,您需要添加Y轴

  axis(2,cex.axis = 0.5) # where 2 specifies the Y axis and 0.5 is half (0.5) of the font size as before.