(abline-statement からの) 行が通過するプロットに凡例があります。伝説の近くでアブリンが見えなくなるようにするにはどうすればよいですか? これは、凡例の背景を境界線なしで白に設定することで実現できるはずですが、どうすればこれを実現できますか? グラフが次のようになるとします。
windows.options(width=30, height=12)
plot(1:10)
abline(v=seq(1,10,1), col='grey', lty='dotted')
legend(4.8, 3, "This legend text should not be disturbed by the dotted grey lines")
もう少し複雑にするには: 凡例がドット プロットのドットに干渉する場合: 凡例の近くで ablines が (上記のように) 見えなくなるが、ドットはまだ見えるようにするにはどうすればよいでしょうか?
windows.options(width=30, height=12)
plot(1:10)
abline(v=seq(1,10,1), col='grey', lty='dotted')
legend(1, 5, "This legend text should not be disturbed by the dotted grey lines, but the plotted dots should still be visible")
そして最後に:凡例ステートメントに改行を導入する方法はありますか?