From 0f34194e46ce9aa484dd1a52064679b6d3faaffe Mon Sep 17 00:00:00 2001 From: Philipp Baumann Date: Thu, 22 Jun 2017 22:24:06 +0200 Subject: [PATCH] Fix `R CMD check` error: `* checking dependencies in R code ... WARNING `::` or `::: imports not declared from:` by adding a list of packages to `Imports` in the `NAMESPACE` --- DESCRIPTION | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3a6ee84..fd078f2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -18,7 +18,13 @@ Imports: tidyr, tidyverse, foreach, - cowplot + cowplot, + lazyeval, + modelr, + pls, + purrr, + readr, + tibble Version: 0.1.0 Authors@R: person("Philipp", "Baumann", email = "baumanph@student.ethz.ch", role = c("aut", "cre"))