Learn R Programming

lrequire (version 0.1.3)

append.module.paths: Append/Insert a path into module.paths, similar to append()

Description

Beware, little error checking is done to see if the indexes are valid. Note the item indexes are 1-based.

Usage

append.module.paths(value, after = -1)

Arguments

value
(relative) path to insert into module.paths
after
location in module.paths to append, 0 for the beginning, defaults to -1 which appends to the end

Value

Nothing is returned.

Examples

Run this code
# Inserts `../R/lib' as the second path to search for modules
append.module.paths('../R/lib', after = 1)

Run the code above in your browser using DataLab