tidypyverse / tidypandas

A grammar of data manipulation for pandas inspired by tidyverse
https://tidypyverse.github.io/tidypandas/
MIT License
93 stars 7 forks source link

datar package #3

Closed pwwang closed 2 years ago

pwwang commented 2 years ago

Hi,

Great effort! Have you checked out datar, which does a similar thing but with a more complete implementation?

Let me know your comments or any chance to collaborate.

talegari commented 2 years ago

@pwwang datar is a good design and implementation. As of tidypandas, we will soon making a release.

As of the differences are concerned, one thing I wonder how a datar user would do programmatically like iris >> distinct(f.Species) where lets say user has the string 'Species'?

pwwang commented 2 years ago
col = "Species"
iris >> distinct(f[col])
talegari commented 2 years ago

Thank you, this is great! May be I missed this in the documentation.