In some of our functions we select variables (e.g., stats_to_df()), but the variables do not always exist. Currently we solve it by using one_of() in the select(), but it throws a warning when a variable isn't found.
We should see if we can find a solution that doesn't throw a warning.
In some of our functions we select variables (e.g.,
stats_to_df()
), but the variables do not always exist. Currently we solve it by usingone_of()
in theselect()
, but it throws a warning when a variable isn't found.We should see if we can find a solution that doesn't throw a warning.