Description Usage Arguments Value Examples
Extracts a parameters from an ensemble made by the naiveBayes function
1 2  | ## S3 method for class 'naiveBayes'
extract_params(object, threshold = 0.001, eps = 0, ...)
 | 
object | 
 an 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  | 
a list that is extracted from the naiveBayes object
1 2  | model <- e1071::naiveBayes(Species ~ ., data=iris) 
model_params <- extract_params(model)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.