我正在使用 R 绘制图例,但我需要绘制黑色边框。
plot.new()
legend(x=0,y=.15, c(" legend1"), cex=1,pt.cex =1.4,col=c("green"),bty="n",fill="green", pch=c(15, 15, 15, 17),border="black")
legend(x=.75,y=.15, " legend", cex=1, pt.cex =1.4,bty="n",col=c("black"), pch=c(17), border="black")
但在上面的代码中,没有按预期打印黑色边框,如下图所示。我怎样才能
把边框(这里黑色边框覆盖绿色框)和图例如下所示。