Closed moodymudskipper closed 4 years ago
It was broken because dplyr::mutate_at(res,c(dummy_col,temp_cols), ~NULL)
is not accepted anymore, ~NULL
is not a legal formula for some reason.
We remove columns more idomatically using select(res, -one_of(dummy_col, temp_cols))
investigate, add tests