load_project {pkgmaker} | R Documentation |
Load Development Package
Description
Load Development Package
Usage
load_project(
pkg,
reset = FALSE,
...,
utests = TRUE,
verbose = FALSE,
addlib = TRUE,
character.only = FALSE,
try.library = FALSE
)
library_project(...)
Arguments
pkg |
name of the package/project to load. |
reset |
logical that indicates if the package should be reloaded (passed to |
... |
other arguments passed to |
utests |
logical that indicates if an environment containing the unit test functions should be created.
If |
verbose |
logical that indicates if log messages should be printed. |
addlib |
logical that indicates if the |
character.only |
logical that indicates if argument pkg should be evaluated or taken litteral. |
try.library |
logicatl that indicates if projects that could not be found should be looked up in the installed packages. |
Value
Invisibly the package
object of the loaded package.
Functions
-
library_project()
: shortcut forload_project(..., try.library = TRUE)
, to load project code from installed library if not found as a development project. All its arguments are passed toload_project
.