diff --git a/DESCRIPTION b/DESCRIPTION index 000d4be..c63c72e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,7 +4,7 @@ Version: 0.0.1 Authors@R: c( person("Steven","Sanderson", email = "spsanderson@gmail.com", role = c("aut","cre","cph")) ) -Description: The goal of this package will be to provide a simple interface for automatic machine learning that fits the `tidymodels` framework. The intention is to work for regression and classification problems with a simple API. +Description: The goal of this package will be to provide a simple interface for automatic machine learning that fits the `tidymodels` framework. The intention is to work for regression and classification problems with a simple verb framework. License: MIT + file LICENSE Encoding: UTF-8 Roxygen: list(markdown = TRUE) diff --git a/R/utils-lib-loads.R b/R/utils-lib-loads.R index 43f401d..1da348a 100644 --- a/R/utils-lib-loads.R +++ b/R/utils-lib-loads.R @@ -45,7 +45,8 @@ core_packages <- function(){ #' install_deps() #' } #' -#' \value{No return value, called for side effects} +#' @return +#' No return value, called for side effects #' #' @name install_deps NULL @@ -91,7 +92,8 @@ install_deps <- function(){ #' load_deps() #' } #' -#' \value{No return value, called for side effects} +#' @return +#' No return value, called for side effects #' #' @name load_deps NULL diff --git a/man/install_deps.Rd b/man/install_deps.Rd index b7dfc9e..33157c3 100644 --- a/man/install_deps.Rd +++ b/man/install_deps.Rd @@ -6,6 +6,9 @@ \usage{ install_deps() } +\value{ +No return value, called for side effects +} \description{ Installs all dependencies in the \code{core_packages()} function. } @@ -17,8 +20,6 @@ Installs all dependencies in the \code{core_packages()} function. install_deps() } -\value{No return value, called for side effects} - } \seealso{ Other Utility: diff --git a/man/load_deps.Rd b/man/load_deps.Rd index 8f9f26d..6550bfc 100644 --- a/man/load_deps.Rd +++ b/man/load_deps.Rd @@ -6,6 +6,9 @@ \usage{ load_deps() } +\value{ +No return value, called for side effects +} \description{ Load all the core packages necessary to run all potential modeling algorithms. @@ -19,8 +22,6 @@ algorithms. load_deps() } -\value{No return value, called for side effects} - } \seealso{ Other Utility: