WillemSleegers / tidystats-v0.3

R package to produce a tidy output file of statistical models.
Other
22 stars 2 forks source link

Find a more elegant solution to selecting variables that do not exist #33

Closed WillemSleegers closed 7 years ago

WillemSleegers commented 7 years ago

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.

WillemSleegers commented 7 years ago

This has become less pressing with the new tidier implementation. However, it might still occur (for example when there are only t-tests).

WillemSleegers commented 7 years ago

Fixed this.