有没有办法让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")
答案 0 :(得分:1)
只需添加pt.bg = 'white'
即可。这会使点的背景颜色变白。
plot(x, x, type="b")
legend("bottomright", c("dinges"), cex=1.2, pch = 21,pt.bg = 'white', lty = 1, bty="n")
答案 1 :(得分:-1)
我正在尝试同样的任务。在lty
调用中包含pch
和legend()
参数可以完成工作。