tidypolars
tidypolars copied to clipboard
Tidy interface to polars
Proposed interface: ```python import polars as pl from tidypolars import col, arrange, filter, mutate df = pl.DataFrame(dict(x = range(3), y = range(3), z = range(3))) ( df >> arrange('x') >>...
Closes #208
I noticed that in `tidytable`, you have purrr functions like `map.()`, but not in `tidypolars`. Using for loops + lambda functions are just not desirable for collaborative coding / code...
Now that `polars` is available through conda, `tidypolars` can be added.
hi, nice work! ran into this today because of https://tomicapretto.github.io/posts/2022-06-26_tidypolars/ I think from documentation I could not find any link to GitHub repo, it would be helpful to add one....
- [x] `abs` - [x] `between` | `pl.is_between` - [x] `cast` - [x] `count` - [x] `cor` - [x] `cov` - [ ] `cum`: `max`, `mean`, `median`, `min`, `sum`, `count`...
- [ ] `clean_names()` - [ ] `adorn_totals()` - [ ] `get_dupes()` Might be worth it and might not be. What do you think?