#' Turn a celery model object into a tidy tibble
#'
#' This method tidies the model in a celery model object, if it exists.
#'
#' @inheritParams generics::tidy
#'
#' @return a tibble
#' @export
tidy.cluster_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 celery model object, if it exists.
#'
#' @inheritParams generics::glance
#'
#' @return a tibble
#' @export
glance.cluster_fit <- function(x, ...) generics::glance(x$fit, ...)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.