2022-09-16 13:21:43 +00:00
|
|
|
- name: Install R
|
2022-09-15 13:24:00 +00:00
|
|
|
win_chocolatey:
|
2022-09-16 13:21:43 +00:00
|
|
|
name: r.project
|
|
|
|
package_params: /AddToPath
|
|
|
|
|
|
|
|
- name: Find R directory
|
|
|
|
win_find:
|
|
|
|
paths: C:\Program Files\R
|
|
|
|
patterns: ['R-*']
|
|
|
|
file_type: directory
|
|
|
|
register: base
|
|
|
|
|
2022-09-25 10:35:45 +00:00
|
|
|
- name: Add R to path
|
|
|
|
win_path:
|
|
|
|
elements:
|
|
|
|
- "{{ base.files[0].path }}\\bin"
|
|
|
|
|
2022-09-16 13:21:43 +00:00
|
|
|
- name: Find installed R libraries
|
|
|
|
win_find:
|
|
|
|
paths: "{{ base.files[0].path }}\\library"
|
|
|
|
file_type: directory
|
|
|
|
register: libs
|
|
|
|
|
|
|
|
- name: Install R packages
|
|
|
|
win_command: Rscript -
|
|
|
|
args:
|
|
|
|
stdin: install.packages(c("{{ item }}"), repos = "http://cran.rstudio.com")
|
|
|
|
when: item not in (libs.files|map(attribute='filename'))
|
|
|
|
loop:
|
|
|
|
- CORElearn
|
|
|
|
- DEoptim
|
|
|
|
- DEoptimR
|
|
|
|
- GenSA
|
|
|
|
- MASS
|
|
|
|
- NMF
|
|
|
|
- RSNNS
|
|
|
|
- Radviz
|
|
|
|
- adabag
|
|
|
|
- aplpack
|
|
|
|
- arules
|
|
|
|
- arulesViz
|
|
|
|
- bnlearn
|
|
|
|
- caret
|
|
|
|
- class
|
|
|
|
- cluster
|
|
|
|
- e1071
|
|
|
|
- graphics
|
|
|
|
- igraph
|
|
|
|
- ipred
|
|
|
|
- keras
|
|
|
|
- kernlab
|
|
|
|
- kknn
|
|
|
|
- lattice
|
|
|
|
- lpSolveAPI
|
|
|
|
- metaheuristicOpt
|
|
|
|
- neuralnet
|
|
|
|
- nnet
|
|
|
|
- quadprog
|
|
|
|
- randomForest
|
|
|
|
- reshape2
|
|
|
|
- rpart
|
|
|
|
- rpart.plot
|
|
|
|
- smotefamily
|
|
|
|
- tabuSearch
|
|
|
|
- tidyverse
|
|
|
|
- viridisLite
|
2022-09-25 10:35:45 +00:00
|
|
|
|
|
|
|
- name: Install RStudio
|
|
|
|
win_chocolatey:
|
|
|
|
name: r.studio
|
|
|
|
|
|
|
|
- name: Create configuration directory
|
|
|
|
win_file:
|
|
|
|
path: "%PROGRAMDATA%\\RStudio"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Disable crash reporting
|
|
|
|
win_copy:
|
|
|
|
dest: "%PROGRAMDATA%\\RStudio\\crash-handler.conf"
|
|
|
|
content: crash-handling-enabled=0
|
|
|
|
|
|
|
|
- name: Disable update notifications
|
|
|
|
win_copy:
|
|
|
|
dest: "%PROGRAMDATA%\\RStudio\\rstudio-prefs.json"
|
|
|
|
content: { "check_for_updates": false }
|