Is it possible to use tidyselect in specifying columns in a formula?
For example, something akin to
lr_fit <- parsnip::logistic_reg() %>%
fit(y ~ starts_with("a"), data=df)
The other solution I came up with is picking the specific columns in the dataframe and then using y ~ .
for all other columns.