vaexio / vaex

Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second πŸš€
https://vaex.io
MIT License
8.23k stars 590 forks source link

[BUG-REPORT] unexpected behavior of `agg={"count": vaex.agg.count()}` #2248

Closed cgjosephlee closed 1 year ago

cgjosephlee commented 1 year ago

Description count seems to cause some kind of conflict, not sure if this is a bug. ζˆͺεœ– 2022-10-26 上午11 58 03

Software information

Additional information Please state any supplementary information or provide additional context for the problem (e.g. screenshots, data, etc..).

JovanVeljanoski commented 1 year ago

It's not a bug. I think you are confusing the method count and the column name "count". If you use the dot notation, df.count will refer to the method by default.

cgjosephlee commented 1 year ago

Indeed, thanks for clarifying.