All Projects → Oefenweb → ansible-r

Oefenweb / ansible-r

Licence: MIT license
Ansible role to set up (the latest version of) R in Ubuntu systems

Programming Languages

r
7636 projects
shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to ansible-r

ngramr
R package to query the Google Ngram Viewer
Stars: ✭ 46 (+12.2%)
Mutual labels:  cran
bruceR
📦 BRoadly Useful Convenient and Efficient R functions that BRing Users Concise and Elegant R data analyses.
Stars: ✭ 110 (+168.29%)
Mutual labels:  cran
xran
Xie's R Archive Network (experimental and for my personal interest only)
Stars: ✭ 24 (-41.46%)
Mutual labels:  cran
Ramble
A R parser based on combinatory parsers.
Stars: ✭ 19 (-53.66%)
Mutual labels:  cran
apsimx
R package for APSIM-X
Stars: ✭ 30 (-26.83%)
Mutual labels:  cran
fpp3package
All data sets required for the examples and exercises in the book "Forecasting: principles and practice" (3rd ed, 2020) by Rob J Hyndman and George Athanasopoulos <http://OTexts.org/fpp3/>. All packages required to run the examples are also loaded.
Stars: ✭ 93 (+126.83%)
Mutual labels:  cran
TSP
Traveling Salesperson Problem - R package
Stars: ✭ 54 (+31.71%)
Mutual labels:  cran
rcppmsgpack
MsgPack Headers for R / msgpack.org[R]
Stars: ✭ 17 (-58.54%)
Mutual labels:  cran
msgtools
Tools for Developing Diagnostic Messages
Stars: ✭ 18 (-56.1%)
Mutual labels:  cran
beginr
an R package for beginners
Stars: ✭ 15 (-63.41%)
Mutual labels:  cran
D3partitionR
R package to visualise interactively hierarchical data.
Stars: ✭ 36 (-12.2%)
Mutual labels:  cran
rcppfastfloat
Rcpp Bindings for the 'fastfloat' Header-Only Library
Stars: ✭ 18 (-56.1%)
Mutual labels:  cran
DGCA
Differential Gene Correlation Analysis
Stars: ✭ 32 (-21.95%)
Mutual labels:  cran
globals
🌐 R package: Identify Global Objects in R Expressions
Stars: ✭ 27 (-34.15%)
Mutual labels:  cran
qwraps2
An updated version of qwraps with a focus on flexibility and general purpose. These functions are helpful for extracting and formatting results from R into .Rnw or .Rmd files. Additional functions for routine work such as extracting results from regression models or finding sensitivity and specificity.
Stars: ✭ 33 (-19.51%)
Mutual labels:  cran
thinkr
Some tools for cleaning up messy 'Excel' files to be suitable for R
Stars: ✭ 21 (-48.78%)
Mutual labels:  cran
PopED
Population Experimental Design (PopED) in R
Stars: ✭ 27 (-34.15%)
Mutual labels:  cran
vioplot
Development version of vioplot R package (CRAN maintainer)
Stars: ✭ 25 (-39.02%)
Mutual labels:  cran
edgarWebR
R package for interacting with the SEC's EDGAR filing search and retrieval system
Stars: ✭ 63 (+53.66%)
Mutual labels:  cran
RcppXPtrUtils
XPtr Add-Ons for 'Rcpp'
Stars: ✭ 17 (-58.54%)
Mutual labels:  cran

r

CI Ansible Galaxy

Set up the latest version of R in Ubuntu systems.

Requirements

  • littler (will be installed)
  • bash (will not be installed)
  • software-properties-common (will be installed)
  • dirmngr (will be installed)
  • apt-transport-https (will be installed)

Variables

  • r_version: [default: 34, 35 for Ubuntu >= 18.04, 40 for Ubuntu >= 20.04]: Version to install

  • r_cran_mirror: [default: https://cran.rstudio.com/]: Your favorite CRAN mirror

  • r_bioclite_url: [default: https://bioconductor.org/biocLite.R]: The biocLite.R script URL for Bioconductor installs

  • r_install_dev: [default: false]: Whether or not install the r-base-dev package

  • r_install: [default: ['littler']]: Additional (apt) packages to install (e.g. r-recommended)

  • r_packages_lib: [default: /usr/local/lib/R/site-library]: The (default) library directory to install packages to

  • r_packages_repos: [default: "{{ r_cran_mirror }}"]: The (default) URL to install packages from

  • r_packages: [default: []]: (CRAN) Packages to install or remove

  • r_packages.{n}.name: [required]: The name of the package

  • r_packages.{n}.state: [optional, default: present]: The state of the package (e.g. updated, absent)

  • r_packages.{n}.type: [optional, default: cran]: The type of the package (e.g. bioconductor)

  • r_packages.{n}.lib: [optional, default: r_packages_lib]: The library directory to install the package to

  • r_packages.{n}.repos: [optional, default: r_packages_repos]: The URL to install the package from

  • r_environment: [default: {}]: Environment variables to set (during the install, update or delete packages tasks)

  • r_scripts_install_path:: [default: /usr/local/bin]: The path where to install the R script used to install, update and delete R package

  • r_scripts_install_owner: [default: root]: The owner of the R script to install, update and delete R package

  • r_scripts_install_group: [default: root]: The group of the R script to install, update and delete R package

Dependencies

None

Example(s)

Simple
---
- hosts: all
  roles:
    - r
Advanced
---
- hosts: all
  roles:
    - r
  vars:
    r_install_dev: true
    # apt packages
    r_install:
      - r-recommended
    # cran, bioconductor or github (R) packages
    r_packages:
      - name: dplyr
      - name: Biobase
        type: bioconductor
      - name: mangothecat/franc
        type: github

License

MIT

Author Information

Mischa ter Smitten

Feedback, bug-reports, requests, ...

Are welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].