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.
ggplot チャートには、チャートのタイトルと x 軸と y 軸の値があります。チャートを画像として保存すると、ラベルが小さくなります。
次を使用してフォントサイズを変更しようとしました:
size = 21
しかし、うまくいきませんでした。チャート全体のフォントサイズを変更する簡単な方法はありますか?
関数を使用してテキストのサイズを変更しtheme()、変更する必要がある要素を選択します。プロット内のすべてのテキストのフォント サイズを設定するには、属性textを変更する必要があります。
theme()
text
ggplot(mtcars,aes(cyl,mpg))+geom_point()+theme(text=element_text(size=21))