# Things you might want to change # To turn an option on or off, simply remove or add a # prior to the line of text. # options(papersize="a4") # options(editor="notepad") # options(pager="internal") # set the default help type options(help_type="text") # options(help_type="html") # set a site library # .Library.site <- file.path(chartr("\\", "/", R.home()), "site-library") # set a CRAN mirror **Below we enable our default mirror site to be in Dallas, Texas (at Revolution Analytics) which is the closest mirror site to UNT. local({r <- getOption("repos") r["CRAN"] <- "https://cran.rstudio.com/" options(repos=r)}) # Give a fortune cookie, but only to interactive sessions # (This would need the fortunes package to be installed.) # if (interactive()) # fortunes::fortune() # The line below sets the working directory. The first is an example for Windows XP, the second is for Windows 7 or 10. # setwd("C:\\Documents and Settings\\jds0282\\Desktop\\Work_Stuff\\Jon_R") setwd("C:\\Users\\jds0282\\Desktop\\Workstuff\\Jon_R") # Libraries / packages you may wish to have loaded when R starts (if not, simply place a # before each library statement). library(foreign) library(Rcmdr) # End.