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.
を使用して軸ラベルを拡大したプロットを作成したいのですcex.lab=2が、ラベルがプロット領域を超えています。どうすればこれを解決できますか?
cex.lab=2
問題の例を次に示します。
plot(1:10,1:10,ylab=~gamma,cex.lab=2)
これは $\gamma$ が斬首されたグラフを生成します
Google とこのサイトの両方で質問する前にいくつかの検索を行いましたが、今回は Google foo に裏切られました。
プロットウィンドウのマージンを大きく設定する必要があります。これは、関数par()と引数を使用して実現できますmar=。数字は、下から始まり、左マージン、上マージン、右マージンの順にマージンに対応します。
par()
mar=
par(mar=c(5,5,1,1)) plot(1:10,1:10,ylab=~gamma,cex.lab=2)