Giter VIP home page Giter VIP logo

Comments (6)

YuRiTan avatar YuRiTan commented on May 12, 2024

Such as:

  • .mean()
  • .quantile()
  • .median()
  • .first()
  • .last()
  • .min()
  • .max()
  • .sum()
  • .nunique()

from polars.

ritchie46 avatar ritchie46 commented on May 12, 2024

Status:

  • mean
  • median
  • quantile
  • first
  • last
  • min
  • max
  • sum
  • nunique
  • agg to series
  • return group indexes

from polars.

koaning avatar koaning commented on May 12, 2024

I just took this for a spin. I wondered. The there a reason for the .select().sum() syntax as opposed to the .agg() in pandas?

from polars.

ritchie46 avatar ritchie46 commented on May 12, 2024

I just took this for a spin. I wondered. The there a reason for the .select().sum() syntax as opposed to the .agg() in pandas?

No specific reason. The python api closely resembles the Rust api and isn't per se meant to be a copy of Pandas (however familiarity is beneficial).

We could default to all selected columns by default and only aggregate the columns that are summable. That would be a more ergonomic default. groupby("foo").sum()

from polars.

koaning avatar koaning commented on May 12, 2024

In pandas right now I can do;

df.groupby('user_id').agg(n_sess=('session', 'nunique'), avg_session_len=('session_time', 'mean'))

After grouping I can calculate multiple aggregations and I can be specific. I can specfiy here that I want the number of unique sessions and the average session time. How might that work here?

from polars.

ritchie46 avatar ritchie46 commented on May 12, 2024

Right! We cannot yet. 😄 This was already requested in #75 . It's coming. I think that we can also support the same syntax on the Python side

Edit:
agg syntax and multiple aggregations added in cb85513

python

 gb_df = df.groupby("a").agg({"b": ["sum", "min"], "c": "count"})

rust

df.groupby("a")?.agg(&[("b", &["n_unique", "sum", "min"]), ("c", &["count"])])

from polars.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.