tidypolars icon indicating copy to clipboard operation
tidypolars copied to clipboard

Tidy interface to polars

Results 30 tidypolars issues
Sort by recently updated
recently updated
newest added

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') >>...

feature

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...

feature

Now that `polars` is available through conda, `tidypolars` can be added.

feature

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....

documentation

- [x] `abs` - [x] `between` | `pl.is_between` - [x] `cast` - [x] `count` - [x] `cor` - [x] `cov` - [ ] `cum`: `max`, `mean`, `median`, `min`, `sum`, `count`...

feature

- [ ] `clean_names()` - [ ] `adorn_totals()` - [ ] `get_dupes()` Might be worth it and might not be. What do you think?

feature