有没有办法用 R 中的函数 linesGrob() 指定线宽?

Is there a way to specify the line width with the function linesGrob() in R?

我想在 R 中的函数 linesGrob() 中调整线条宽度(比默认值更细)。宽度参数似乎不起作用。还有别的办法吗?

您可以通过 gp(图形参数)参数设置线宽。图形参数设置本身可以通过 grid::gear 设置,其中线宽通过参数 lwd:

设置
library(grid)

grid.newpage()
p <- linesGrob(gp = gpar(lwd = unit(10, "pt")))
grid.draw(p)