build_model.naiveBayes: build_model.naiveBayes

Description Usage Arguments Value Examples

Description

Builds an entire PFA list of lists based on a naiveBayes

Usage

1
2
## S3 method for class 'naiveBayes'
build_model(object, threshold = 0.001, eps = 0, ...)

Arguments

object

a object of class naiveBayes

threshold

a value replacing cells with probabilities within eps range.

eps

a numeric for specifying an epsilon-range to apply laplace smoothing (to replace zero or close-zero probabilities by theshold.)

...

further arguments passed to or from other methods

Value

a list of lists representation of the naiveBayes model that can be inserted into a cell or pool

Examples

1
2
model <- e1071::naiveBayes(Species ~ ., data=iris) 
model_built <- build_model(model)

aurelius documentation built on May 2, 2019, 3:43 a.m.