From 18799974fb47f0d40a455fa6297227c97b12ea5a Mon Sep 17 00:00:00 2001 From: Holger Brandl Date: Mon, 11 Dec 2017 11:08:49 +0100 Subject: [PATCH] updated deployment notes --- docs/deployment_modes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/deployment_modes.md b/docs/deployment_modes.md index db1c272..12163dc 100644 --- a/docs/deployment_modes.md +++ b/docs/deployment_modes.md @@ -82,6 +82,7 @@ install_github("holgerbrandl/datautils@v0.4") ## or from local dir devtools::install_local("/Users/brandl/Dropbox/projects/datautils") +## adjust the search path for `modules` # options(import.path = "/Users/brandl/Library/R/3.4/library") # options(import.path = .libPaths()[1]) options(import.path = .libPaths()) @@ -91,6 +92,10 @@ options(import.path = .libPaths()) ## rather al modules::import('datautils/stats/ci_commons') +## import all stats +modules::import('datautils/stats/tester') +modules::import('datautils/stats') + ## loadd it, which will export nothing by default require(datautils) -- GitLab