-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing select helpers #133
Comments
ok, in #135 I now have tried to implement a consistent logic for argument order, also that numeric/factor/data frame methods are consistent. In general, |
I think #47 needs to be finished first before we can add select helpers here. |
#47 won't be worked on for a while, so I think this issue doesn't have to wait for it. |
library(datawizard)
iris |>
standardize(select = starts_with("Sep")) |>
unstandardise(select = starts_with("Sep"))
#> Error in starts_with("Sep"): impossible de trouver la fonction "starts_with" Created on 2023-03-09 with reprex v2.0.2 |
See #128
Needs select helpers:
https://easystats.github.io/datawizard/reference/demean.html(won't do, see Add missing select helpers #376)Needs to move secondary select-args (basically, data frame method should have argument order of numeric/vector, followed by select/exclude):
For some functions, select/exclude come after some main arguments, but not at the end. I'm not sure if this is a problem?
The text was updated successfully, but these errors were encountered: