`print_fit_results` is a wrapper function for printing a summary of the model fit from models that were trained using caret, tidymodels, or h2o backends. This wrapper function provides uniformity of input arguments to easily switch between the different modeling packages.

print_fit_results(
  fit_list,
  test_set = FALSE,
  use = NULL,
  html = knitr::is_html_output()
)

Arguments

fit_list

List of fitted models for which to make predictions. Typically the output of `fit_models()`.

test_set

Logical indicating whether or not this evaluation is for the test set. If `FALSE`, output is assumed to be associated with validation set.

use

One of "caret", "h2o", "tidymodels", indicating the modeling package to use. If NULL (default), the modeling package is inferred from the fit.

html

Logical indicating whether the output should be in html format. If FALSE, output is in latex format.

Value

Print fit summary to the console.

See also

Other print_fit_family: print_fit