You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Set recipe
grad_rec<-recipe(formula=ba_complete_formula,data=df_a)%>%
## NB: this is dicey and should be improved, but it's a
## start; using K nearest neighbors to impute.
step_knnimpute(all_predictors()) %>%
## convert factors to dummy
step_dummy(dplyr::one_of(likely_factors)) %>%
## center predictors
step_center(all_predictors()) %>%
## rescale all predictors
step_scale(all_predictors())
## Set Model
grad_mod<-
logistic_reg()%>%
set_engine("glm")
##Set Workflow
grad_wfl<-
workflow()%>%
add_recipe(grad_rec)%>%
add_model(grad_mod)
Then running the model across a resampled dataset looks like this:
Workflows makes a huge difference:
Then running the model across a resampled dataset looks like this:
Way better than the first way I did it. I think this obviates the need for anything but various models
The text was updated successfully, but these errors were encountered: