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))