############################################################################### pkglist=c('doBy','dplyr') ############################################################################### for (p in pkglist) { if(!require(p,character.only = TRUE)) { install.packages(p) require(p,character.only = TRUE)} } ############################################################################### ############################################################################### # The R package clpAPI is required by the package "qDEAC". The R package clpAPI # is no longer on CRAN but can installed using procedures and code avilable on # github site: https://github.com/ArmstrongJ/clpAPI/ ############################################################################### # Linux systems: # click on the BUILD-Linux.md which takes you to page: # https://github.com/ArmstrongJ/clpAPI/blob/main/BUILD-Linux.md ############################################################################### # MAC systems # click on the BUILD-macOS.md which takes you to page: # https://github.com/ArmstrongJ/clpAPI/blob/main/BUILD-macOS.md ############################################################################### # Windows systems: R-4.2.1 or higher required # Install clpAPI using binary file "clpAPI_1.4.1.zip" process described below # or by running: install.packages("https://github.com/ArmstrongJ/clpAPI/releases/download/1.4.1/clpAPI_1.4.1.zip", type="win.binary", repos=NULL) ############################################################################### # ############################################################################### # qDEAC package ############################################################################### # For Linux or MAC: # Download and install the package source file: "qDEAC_1.0.0.tar.gz" ############################################################################### # Windows systems: # Install qDEAC using binary file "qDEAC_1.0.0.zip" in dropbox folder. # Easiest to do this from RStudio: # (1) Select Packages tab # (2) Select Install # (3) Select Install from: Package Archive File # (4) Click Browse and Navigate to folder containing "qDEAC_1.0.0.zip" and select it # (5) Select Install ###############################################################################