Description Usage Arguments Value Examples
View source: R/onehot_encoder.R
This function encodes categorical variables using the popular onehot method for each category.
1 | onehot_encoder(X_train, X_test = NULL, cat_columns)
|
X_train |
X_train A 'tibble' or 'data.frame' representing the training data set containing some categorical features/columns. |
X_test |
X_test A 'tibble' or 'data.frame' representing the test set, containing some set of categorical features/columns. Default = NULL. |
cat_columns |
A character vector containing the names of the categorical columns in the tibble that should be encoded. |
A list with processed training and test sets, in which the named categorical columns are replaced with their encodings.
1 2 3 | onehot_encoder(
X_train = mtcars,
cat_columns = c("gear", "carb"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.