2015-06-09 105 views
0

我想要在y軸的頂部繪製ylab,我可以使用哪些代碼?在y軸的頂部繪製y標籤

下面是示例

par(mar=c(4,6,4,4)) 
plot(rnorm(100), ylab="") 
mtext(side=2, text="Label", las=1, line=2) 

我想在y軸的頂端,其紅色箭頭指示繪製ylabel。

image

回答

1

你可以不喜歡這樣,通過查找左上角,並將其固定於其上。

par(mar=c(4,6,4,4)) 
plot(rnorm(100), ylab="") 

loc <- par("usr") 
text(loc[1], loc[4], "Label", pos = 2, xpd = T) 

pos圍繞播放和添加adj可以改變位置的比特。

enter image description here