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でomaパラメーターを使用しているにもかかわらず、各サブプロットのタイトルが途切れています。適切に表示するために使用できる他のパラメーターはありますか?
op <- par(mfrow = c(3,3), oma = c(0,0,2,0) + 0.1, mar = c(0,0,1,1) + 0.1)
試してみてくださいpar(xpd=NA):から?par、
par(xpd=NA)
?par
「xpd」論理値または「NA」。'FALSE' の場合、すべてのプロットがプロット領域にクリップされます。'TRUE' の場合、すべてのプロットが Figure 領域にクリップされます。'NA' の場合、すべてのプロットがデバイス領域にクリップされます。「クリップ」も参照してください。