R/tidymodel.R

#' tidymodel: A tool for model development and evalution
#'
#' tidymodel provides a flexible framework for developing and evaluating model.
#'
#' It has three main goals:
#'
#' \itemize{
#' \item Identify the most important steps of develeping variables for the models
#' \item Use the same interface to run the ready-built models from various packages
#' \item Use the same interface to evaluate the quality of models built from various packages
#' }
#'
#' To learn more about dplyr, start with the vignettes:
#' `browseVignettes(package = "tidymodel")`
#'
#' @section Package options:
#' \describe{
#' \item{`tidymodel.show_progress`}{Should lengthy operations such as `do()`
#'   show a progress bar? Default: `TRUE`}
#' }
#' 
#' @import rlang
#' @import dplyr
#' @import tidyr
#' @import h2o
#' @import ggplot2
#' @import ggridges
#' @importFrom glue glue
#' @importFrom stats quantile
#' @importFrom stats predict
#' @importFrom stats reorder
#' 
"_PACKAGE"
NULL
utils::globalVariables(c("."))
ldanai/tidymodel documentation built on Jan. 4, 2020, 6:25 a.m.