Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
cba:start [2017/08/09 04:28]
arman [Data Science / OMNIA Links]
cba:start [2017/08/09 07:28]
arman
Line 16: Line 16:
   * [[https://confluence.prod.cba/display/ADS/Data+Science+Onboarding+Checklist+-+in+construction | Data Science Onboarding Info on Confluence ]]    * [[https://confluence.prod.cba/display/ADS/Data+Science+Onboarding+Checklist+-+in+construction | Data Science Onboarding Info on Confluence ]] 
   * [[https://stash.odp.cba/projects/OMNIA/repos/datascience.project.template/browse | Data Science Project Template on Bitbucket]]   * [[https://stash.odp.cba/projects/OMNIA/repos/datascience.project.template/browse | Data Science Project Template on Bitbucket]]
 +  * [[http://knowit.cba/pages/viewpage.action?spaceKey=OMNIA&title=Exploring+the+Data | Exploring Data Using OMNIA]]
   * [[ http://knowit.cba/display/OMNIA/About+Omnia+and+Big+Data |  OMNIA Documentation on Confluence (knowit.cba) ]]   * [[ http://knowit.cba/display/OMNIA/About+Omnia+and+Big+Data |  OMNIA Documentation on Confluence (knowit.cba) ]]
   * [[https://jira.odp.cba/secure/Dashboard.jspa | JIRA home ]]   * [[https://jira.odp.cba/secure/Dashboard.jspa | JIRA home ]]
  
 +==== Misc ====
 +  * Configure R to download packages from CBA CRAN mirror: 
 +    * options(repos = c(CRAN = "http://artifactory.dev.cba/artifactory/au.csiro.cran/"), download.file.method = "libcurl")
 +  * If package installation fails from http://artifactory.dev.cba, do the following: 
 +    * In Safari, go to http://artifactory.dev.cba/artifactory/au.csiro.cran/bin/macosx/mavericks/contrib/3.2/. Change "3.2" to match your R version. 
 +    * In browser, use find to locate the package you are after. For example, I couldn't install dplyr, so I searched "dplyr"
 +    * Right click on file name, and choose to download the linked file. On Mac, it will be saved to "Download" directory. 
 +    * Run Terminal and change directory to Downloads, i.e., cd ~/Downloads
 +    * Run R and execute: 
 +      * install.packages("dplyr_0.7.2.tgz", repos=NULL, type="source")