No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
475a47a
... +0 ...
240015c
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
1 | + | #' Determine the minimum set of model fits |
|
2 | + | #' |
|
3 | + | #' `min_grid()` determines exactly what models should be fit in order to |
|
4 | + | #' evaluate the entire set of tuning parameter combinations. This is for |
|
5 | + | #' internal use only and the API may change in the near future. |
|
6 | + | #' @param x A model specification. |
|
7 | + | #' @param grid A tibble with tuning parameter combinations. |
|
8 | + | #' @param ... Not currently used. |
|
9 | + | #' @return A tibble with the minimum tuning parameters to fit and an additional |
|
10 | + | #' list column with the parameter combinations used for prediction. |
|
11 | + | #' @section Methods: |
|
12 | + | #' \Sexpr[stage=render,results=rd]{generics:::methods_rd("min_grid")} |
|
13 | + | #' @export |
|
14 | + | min_grid <- function(x, grid, ...) { |
|
15 | + | UseMethod("min_grid") |
|
16 | + | } |
Learn more Showing 1 files with coverage changes found.
R/min_grid.R
Files | Coverage |
---|---|
R/augment.R | 0.00% |
R/calculate.R | 0.00% |
R/coercion.R | 0.00% |
R/compile.R | 0.00% |
R/components.R | 0.00% |
R/docs.R | 92.68% |
R/equation.R | 0.00% |
R/estfun.R | 0.00% |
R/evaluate.R | 0.00% |
R/explain.R | 0.00% |
R/fit.R | 0.00% |
R/fit_xy.R | 0.00% |
R/generate.R | 0.00% |
R/glance.R | 0.00% |
R/hypothesize.R | 0.00% |
R/interpolate.R | 0.00% |
R/learn.R | 0.00% |
R/min_grid.R
New File
|
0.00% |
R/prune.R | 0.00% |
R/refit.R | 0.00% |
R/required_pkgs.R | 0.00% |
R/sets.R | 0.00% |
R/specify.R | 0.00% |
R/tidy.R | 0.00% |
R/train.R | 0.00% |
R/tunable.R | 0.00% |
R/var_imp.R | 0.00% |
R/varying_args.R | 0.00% |
R/visualize.R | 0.00% |
Project Totals (29 files) | 60.80% |
240015c
475a47a