annotate .Rprofile @ 100:a4cd935561d4 dml-dockerised tip

small updates and version pin for cliopatria
author wolffd <wolffd.mail@googlemail.com>
date Fri, 29 Jun 2018 17:48:41 +0100
parents 5038e67f3a6d
children
rev   line source
samer@55 1 cat(".Rprofile: Setting UK repository\n")
samer@55 2 r = getOption("repos") # hard code the UK repo for CRAN
samer@55 3 r["CRAN"] = "http://cran.uk.r-project.org"
samer@55 4 options(repos = r)
samer@55 5 rm(r)
samer@55 6
samer@55 7