Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 R 中的 sm.density.compare 制作了一个包含 4 个密度图的图形,如下所示:
如何更改线条的颜色?同样有趣的是我如何改变线条的类型?即虚线,实线
您可以使用与其他基本绘图功能相同的参数 -col=颜色和lty=线型。
col=
lty=
library(sm) y <- rnorm(100) g <- rep(1:2, rep(50,2)) sm.density.compare(y, g,col=c("blue","black"),lty=c(4,6))