1. ホーム
  2. r

[解決済み】Rのエキスパートユーザー、あなたの.Rprofileの中身は?[クローズド]

2022-04-02 13:31:17

質問

私はいつも、他の人のスタートアッププロファイルが、その言語について有益であり、勉強になると思っています。さらに、私は バッシュ ヴィム Rについては何もありません。

例えば、私がいつも望んでいることのひとつは、ウィンドウターミナルで入力と出力のテキストに異なる色をつけること、そして多分シンタックスハイライトも。

解決方法は?

これが私のものです。カラーリングの参考にはなりませんが、ESSとEmacsから得ています...。

options("width"=160)                # wide display with multiple monitors
options("digits.secs"=3)            # show sub-second time stamps

r <- getOption("repos")             # hard code the US repo for CRAN
r["CRAN"] <- "http://cran.us.r-project.org"
options(repos = r)
rm(r)

## put something this is your .Rprofile to customize the defaults
setHook(packageEvent("grDevices", "onLoad"),
        function(...) grDevices::X11.options(width=8, height=8, 
                                             xpos=0, pointsize=10, 
                                             #type="nbcairo"))  # Cairo device
                                             #type="cairo"))    # other Cairo dev
                                             type="xlib"))      # old default

## from the AER book by Zeileis and Kleiber
options(prompt="R> ", digits=4, show.signif.stars=FALSE)


options("pdfviewer"="okular")         # on Linux, use okular as the pdf viewer