我正在尝试从scatterplotMatrix中删除回归线。我试过这个,但这不起作用
library(car)
scatterplot.matrix(~mpg+disp+drat+wt|cyl, data=mtcars,
main="Three Cylinder Options", reg.line=F, lwd=0)
答案 0 :(得分:1)
如果查看scatterplotMatrix
的文档,您会注意到smoother
参数。将其设置为NULL
。
scatterplot.matrix(~mpg+disp+drat+wt|cyl, data=mtcars,
main="Three Cylinder Options", reg.line=F, lwd=0, smoother = NULL)