0
有誰知道如何旋轉R中函數twoord.plot中的Y軸標籤?另外,如何調整Y軸標籤的字體大小?如何在R的twoord.plot中旋轉Y軸標籤?
有誰知道如何旋轉R中函數twoord.plot中的Y軸標籤?另外,如何調整Y軸標籤的字體大小?如何在R的twoord.plot中旋轉Y軸標籤?
低於標準桿: 我只是拿起自帶的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.
看看'?par'。 'las'和'cex'是你可能在尋找的參數。 – Thomas