-
Notifications
You must be signed in to change notification settings - Fork 4
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
Renaming in select()
#117
Comments
Yes, a new issue is better, my point was more to which extend do you want to translate tidyverse functions. This renaming and named |
Ideally all of them. Practically this will not be possible for some time because a bunch of them (in particular in Eventually, we might also extend the translations to other packages supported by |
Closed by 43db0e8: library(dplyr, warn.conflicts = FALSE)
library(tidypolars)
tibble(x = 1, xx = 2) |>
as_polars_df() |>
select(foobar = x)
#> shape: (1, 1)
#> ┌────────┐
#> │ foobar │
#> │ --- │
#> │ f64 │
#> ╞════════╡
#> │ 1.0 │
#> └────────┘
tibble(x = 1, xx = 2) |>
as_polars_df() |>
select(foobar = contains("x"))
#> shape: (1, 2)
#> ┌─────────┬─────────┐
#> │ foobar1 ┆ foobar2 │
#> │ --- ┆ --- │
#> │ f64 ┆ f64 │
#> ╞═════════╪═════════╡
#> │ 1.0 ┆ 2.0 │
#> └─────────┴─────────┘ |
Originally posted by @ginolhac in #116 (comment)
@ginolhac I prefer opening a new issue for this one, but of course you can open as many as you want :)
The text was updated successfully, but these errors were encountered: