Simplify R startup options.
[Dotty.git] / R / .Rprofile
1 options("width"=160)                # wide display with multiple monitors
2 options("digits.secs"=3)            # show sub-second time stamps
4 r <- getOption("repos")             # hard code the AU mirror for CRAN
5 r["CRAN"] <- "http://cran.csiro.au"
6 options(repos = r)
7 rm(r)
9 ## from the AER book by Zeileis and Kleiber
10 options(prompt="R> ", digits=4, show.signif.stars=FALSE)
12 options("pdfviewer"="evince")