Load Development Package
load_project( pkg, reset = FALSE, ..., utests = TRUE, verbose = FALSE, addlib = TRUE, character.only = FALSE, try.library = FALSE ) library_project(...)
| 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. |
library_project: shortcut for load_project(..., try.library = TRUE), to load project
code from installed library if not found as a development project.
All its arguments are passed to load_project.