R/tidy.R

Defines functions glance.model_fit tidy.model_fit

Documented in glance.model_fit tidy.model_fit

#' Turn a parsnip model object into a tidy tibble
#'
#' This method tidies the model in a parsnip model object, if it exists.
#'
#' @inheritParams generics::tidy
#'
#' @return a tibble
#' @export
tidy.model_fit <- function(x, ...) generics::tidy(x$fit, ...)


#' Construct a single row summary "glance" of a model, fit, or other object
#'
#' This method glances the model in a parsnip model object, if it exists.
#'
#' @inheritParams generics::glance
#'
#' @return a tibble
#' @export
glance.model_fit <- function(x, ...) generics::glance(x$fit, ...)

Try the parsnip package in your browser

Any scripts or data that you put into this service are public.

parsnip documentation built on Aug. 18, 2023, 1:07 a.m.