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.
私は 2 つの平均値を持っていますLR50<-(424.8, 425.7)。これらを barplot としてプロットしたいbarplot(LR50)。今、からの情報以外は必要ありませんylim=c(424,426.5)。x 軸を変更してaxis(1,at=c(0,10), pos=424)も、軸の下に棒グラフが表示されます。
LR50<-(424.8, 425.7)
barplot(LR50)
ylim=c(424,426.5)
axis(1,at=c(0,10), pos=424)
バープロットを y=424 以上の新しい x 軸からのみプロットするにはどうすればよいですか?
このパラメーターを使用する (そして FALSE に設定する) 必要がありxpdます。これにより、プロットがプロット領域にクリップされます。
xpd
barplot(LR50,ylim = c(424,426.5),xpd=FALSE) axis(1,at=c(0,10),pos=424)