load.libraries: Load (and Install) Libraries

Description Usage Arguments Examples

View source: R/load.libraries.R

Description

Load (and Install) Libraries

Usage

1
load.libraries(needed.packs)

Arguments

needed.packs

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (needed.packs) 
{
    installed.packs <- installed.packages()
    for (pack in needed.packs) {
        if (length(grep(pack, installed.packs)) == 0) {
            install.packages(pack)
        }
        library(pack, character.only = T)
    }
  }

colinsheppard/colinmisc documentation built on July 10, 2020, 5:59 p.m.