0
有沒有一種方法可以在基本R中通過旋轉它們來修改點類型?我需要一個指向直角三角形(底部平行於Y軸)。R plot旋轉點或填充箭頭
x <- runif(5)
y <- runif(5)
plot(x, y, pch = 17, cex = 2) #is there a parameter for rotation?
或者,我怎樣才能改變箭頭()中的箭頭與實心三角形?
plot(x, y, pch = "")
arrows(x, y, x-0.03, y, code = 1) #is there a parameter for the arrowhead symbol?
感謝您的幫助!
薩拉
看吧:http://stackoverflow.com/questions/5731432/change-arrowhead-of-arrows – Marichyasana
'PCH = -9658'(也許取決於執行環境) – cuttlefish44
謝謝! @ cuttlefish44的解決方案是我尋找的簡單方法:) – Sara