View source: R/dummy_classifier.R
dummy_classifier | R Documentation |
dummy classifier for a categorical variable.
dummy_classifier(
y,
strategy = "proportional",
constant = NULL,
random_state = NULL
)
y |
a categorical vector, containing the outcomes of interest |
strategy |
a strategy from "constant", "most_frequent", "proportional", "uniform", or "stratified". |
constant |
a constant value for the constant strategy. |
random_state |
a random seed. |
a list
# Split the data into training and testing sets
set.seed(2023)
index <- sample(1:nrow(iris), nrow(iris) * 0.8)
train_data <- iris[index,]
test_data <- iris[-index,]
dummy_model <- dummy_classifier(train_data$Species, strategy = "proportional", random_state = 2024)
dummy_model
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.