我想更改 sjp.int 图中线条的宽度(较粗的线条)。我尝试了所有帮助参数,但不知何故找不到。
示例代码:
require(ggplot2)
require(sjPlot)
head(diamonds)
test<-lm(price ~ carat*depth, data=diamonds)
sjp.int(test, type = "eff")
我想更改 sjp.int 图中线条的宽度(较粗的线条)。我尝试了所有帮助参数,但不知何故找不到。
示例代码:
require(ggplot2)
require(sjPlot)
head(diamonds)
test<-lm(price ~ carat*depth, data=diamonds)
sjp.int(test, type = "eff")
您当前无法更改线条大小sjp.int
,因此您必须修改返回的绘图对象,它们位于 return valueplot.list
中。然后你可以覆盖geom_line()
.
dummy <- sjp.int(test, type = "eff")
dummy$plot.list[[1]] + geom_line(size = 3)
我在 中添加了一个geom.size
参数sjp.int
,请参阅GitHub。