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.
具体的なプロットのフォントを指定する方法は知っていますが、後続のすべてのプロット、ヒストグラムなどで一度指定する方法はありますか?
を使用しparます。次の例では、設定を変更したいとしますが、変更できるグラフパラメータの完全なリストについてfamilyはを参照してください。?par
par
family
?par
old.params <- par(family = "mono") plot(cars) hist(islands)
完了したら、すべてを古いデフォルトにリセットできます。
par(old.params)