-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Solutions for 04_regularization should include:
Import data
penguins <- palmerpenguins::penguins %>%
filter(!is.na(bill_length_mm))
Set seed
set.seed(23)
Perform split
penguin_split <- penguins %>% initial_split(prop = 0.80)
penguins_train <- training(penguin_split)
penguins_test <- testing(penguin_split)
Participants will run into error if null values in bill_length_mm are not dropped
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels