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.
私は
plot(1,1) legend("bottomleft", c("A","B","C"), lwd=3, bty="n",lty=c(1,3,4))
凡例の線を長くすることは可能ですか (ベース R のみお願いします)? 線が短いと、lty=3 と lty=4 の違いを凡例ですぐに確認するのは少し難しいようです。lwd を増やしても効果はありません。
どうもありがとう
seg.len引数を設定できます。
seg.len
plot(1,1) legend("bottomleft", c("A","B","C"), lwd=3, bty="n",lty=c(1,3,4), seg.len=5 )