作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我运行此代码时
plot(c(0,1), c(0, 1), type = "n")
legend("topleft", legend = c("Model", "Data"),
lwd = c(3, NA),
pch = c(NA, 16),
bty = "n", inset = 0.02,
cex = 2)
pdf("legendTest.pdf")
中时...
dev.off()
,保存的 PDF 有一条穿过该点的线。
最佳答案
您可以通过显式设置行类型(参数 lty
)来解决此问题,如下所示:
plot(c(0,1), c(0, 1), type = "n")
legend("topleft", legend = c("Model", "Data"),
lwd = c(3, NA),
lty = c(1, 0), # 0=blank, 1=solid (default). See ?par for more.
pch = c(NA, 16),
bty = "n", inset = 0.02,
cex = 2)
lwd
的文档参数,在
?par
解释说:
'lwd' The line width, a positive number, defaulting to '1'. The interpretation is device-specific, and some devices do not implement line widths less than one.
lty
通常更安全。比
lwd
来控制这个特定的细节。
关于R:我可以在另存为 PDF 时修复我的图例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8233819/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!