3

有没有办法type = "b"在我的图例中获得线型?

我希望我的图例看起来与图中的点相同:

x  <-  c(1:3)
plot(x, x, type="b")
legend("bottomright", c("dinges"), cex=1.2, pch=c(21), lty=1, bty="n")  
4

2 回答 2

3

只需添加pt.bg = 'white'. 这会使点的背景颜色变白。

plot(x, x, type="b")
legend("bottomright", c("dinges"), cex=1.2, pch = 21,pt.bg = 'white', lty = 1, bty="n")
于 2013-08-14T13:41:57.887 回答
-1

我正在尝试同样的任务。在调用中包含lty和参数可以完成工作。pchlegend()

于 2015-04-09T03:24:36.540 回答