凡例の線幅を変更したい。現在私は持っています:
legend(-0.145, 25, c("(Gaussian) Kernel density","fitted normal distribution"),lwd=1.8, cex=0.8,
col=c("black","black"), lty=1:2)
lwd はテキストを変更しているようですが、線と点線の幅は変更していません。どうすればこれを行うことができますか?
私はあなたが間違っていると思いますlwd
、凡例の線幅を設定します:
これを比較してください(上のプロット):
plot(rnorm(100)*13)
legend(-0.145, 25, c("(Gaussian) Kernel density","fitted normal distribution"),lwd=0.1, cex=0.8,
col=c("black","black"), lty=1:2)
これで(下のプロット):
plot(rnorm(100)*13)
legend(-0.145, 25, c("(Gaussian) Kernel density","fitted normal distribution"),lwd=3, cex=0.8,
col=c("black","black"), lty=1:2)