axe-NaiveBayes: Axing a NaiveBayes.

axe-NaiveBayesR Documentation

Axing a NaiveBayes.

Description

NaiveBayes objects are created from the klaR package, leveraged to fit a Naive Bayes Classifier.

Usage

## S3 method for class 'NaiveBayes'
axe_call(x, verbose = FALSE, ...)

## S3 method for class 'NaiveBayes'
axe_data(x, verbose = FALSE, ...)

Arguments

x

A model object.

verbose

Print information each time an axe method is executed. Notes how much memory is released and what functions are disabled. Default is FALSE.

...

Any additional arguments related to axing.

Value

Axed NaiveBayes object.

Examples


library(klaR)

fit_mod <- function() {
  boop <- runif(1e6)
  NaiveBayes(
    y ~ x,
    data = data.frame(y = as.factor(rep(letters[1:4], 1e4)), x = rnorm(4e4))
  )
}

mod_fit <- fit_mod()
mod_res <- butcher(mod_fit)

weigh(mod_fit)
weigh(mod_res)



tidymodels/butcher documentation built on April 15, 2024, 9:18 p.m.