Skip to contents

model_categorical_all

Usage

model_categorical_all(x, y)

Arguments

x

features used in prediction

y

outcome to predict

Value

A tibble with model names and fitted categorical models.

Examples

if (FALSE) { # \dontrun{
x <- iris[, c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")]
y <- iris$Species
model_categorical_all(x, y)
} # }