R/get_expected_params.R

Defines functions get_expected_params

Documented in get_expected_params

#' @title Print the expected parameters for each function
#'
#' @description
#' Print the names of each function along with the respective expected parameters.
#'
#' @export
get_expected_params <- function(){
  expected_params <- list("preprocess_fn" = c("data_raw", "params_dots"),
                          "plot_exp_fn" = c("data_raw", "data_mod", "dir_proj", "params_dots"),
                          'fit_fn' = c("data_mod", "params_dots", "dir_proj"),
                          'get_fit_stats_fn' = c("data_raw", "data_mod", "dir_proj",
                                                 "params_dots", "fit_obj"),
                          "plot_fit_fn" = c("data_raw", "data_mod", "dir_proj",
                                            "params_dots", "fit_obj", "fit_stats"),
                          "plot_val_fn" = c("data_raw", "data_mod", "dir_proj",
                                            "params_dots", "fit_obj"))
  expected_params
}
MiguelRodo/gamlsspipeline documentation built on July 25, 2020, 7:23 p.m.