「編集-> GUI設定」を使用してプログラムで行うように、コンソールのフォントとフォントサイズを設定することは可能ですか? この関数はどのようになりますか? 私は窓にいます。
質問する
5691 次
1 に答える
10
Windows (少なくとも) では、$R_HOME/etc/Rconsole
構成ファイルは、コンソールとページャーの多くのオプションのパラメーターを設定します。以下は、手動で編集してデフォルトのフォントとフォント サイズを変更できるセクションです。
## Font.
# Please use only fixed width font.
# If font=FixedFont the system fixed font is used; in this case
# points and style are ignored. If font begins with "TT ", only
# True Type fonts are searched for.
font = TT Courier New
points = 10
style = normal # Style can be normal, bold, italic
アクティブな R セッションのコマンド ラインから値を変更するには、関数を使用できますloadRconsole()
。上記の形式のディレクティブを含むテキスト ファイルを読み取ります。これによりRconsole
、R の起動時に読み取られた値が上書きされます。次に例を示します。
temp <- tempfile()
cat("points = 13\n", file = temp)
cat("style = italic\n", file = temp, append = TRUE)
loadRconsole(file = temp)
## And then, to reset to the defaults:
loadRconsole(file = file.path(R.home(), "etc/Rconsole"))
于 2013-02-05T17:27:17.150 に答える