allows option to manually set the first level of the factor, for consistency with
yardstick which automatically considers the first level
as the "positive class" when evaluating classification.
## simply set the first level of a factor
iris$Species %>% levels
iris %>%
set_fct(Species, first_level = "virginica") %>%
dplyr::pull(Species) %>%
levels()