凡例を描く必要があるプロットに取り組んでおり、そのうちの 1 つを三角形にする必要があります。
plot.new()
legend(x=.5,y=.9, c("A","B","C","D"), cex=.8, bty="n",
fill = c("green","yellow","red","blue"))
私は三角形にlegend D
なりたいです。どうすればこれを実装できますか?
よろしく
pch
とcol
(の代わりにfill
)を使用します。
plot.new()
legend(x=.5,y=.9, c("A","B","C","D"), cex=.8, bty="n",
col=c("green", "yellow", "red", "blue"), pch=c(15, 15, 15, 17))
pch パラメーターは、凡例シンボルの形状を選択します。
plot.new();
legend(x=.5,y=.9, c("A","B","C","D"),
pch=c(1,4,3,2), cex=.8, bty="n",
col=c("green","yellow","red","blue"))