tables | R Documentation |
Auxiliary function for "naive_bayes"
and "*_naive_bayes"
objects for easy browsing tables.
tables(object, which = NULL)
object |
object of class inheriting from: |
which |
tables to be showed (all by default). This can be any valid indexing vector or vector containing names of variables. |
Default print method for "naive_bayes"
and "*_naive_bayes"
objects shows at most five first tables. This auxiliary function tables
returns by default all tables and allows easy subsetting via indexing variables.
list with tables.
Michal Majka, michalmajka@hotmail.com
naive_bayes
, bernoulli_naive_bayes
, multinomial_naive_bayes
, poisson_naive_bayes
, gaussian_naive_bayes
, tables
, get_cond_dist
data(iris)
nb <- naive_bayes(Species ~ ., data = iris)
tables(nb, "Sepal.Length")
tables(nb, c("Sepal.Length", "Sepal.Width"))
tabs <- tables(nb, 1:2)
tabs
tabs[1]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.