0

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

4

1 回答 1

0

低于标准:我刚刚选择了一个带有 twoord.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.
于 2013-07-29T20:49:14.253 回答