Code Monkey home page Code Monkey logo

Comments (3)

alexander-beedie avatar alexander-beedie commented on August 16, 2024

Definitely don't do this in a Python function ;)

I think you just want this: unnest the struct column for simplicity, and then get the horizontal sum of everything except the first field (selectors1 make that kind of column selection pretty easy - adjust as needed):

import polars.selectors as cs

Total_df.unnest("Market_Long").with_columns(
    Sum_Market_Long=pl.sum_horizontal(~cs.first())
)
# shape: (3, 5)
# ┌────────┬──────────┬──────────┬──────────┬─────────────────┐
# │ Ticker ┆ trader_a ┆ trader_b ┆ trader_c ┆ Sum_Market_Long │
# │ ---    ┆ ---      ┆ ---      ┆ ---      ┆ ---             │
# │ str    ┆ i64      ┆ i64      ┆ i64      ┆ i64             │
# ╞════════╪══════════╪══════════╪══════════╪═════════════════╡
# │ AAPL   ┆ 1        ┆ 2        ┆ 3        ┆ 6               │
# │ GOOGL  ┆ 1        ┆ 2        ┆ 3        ┆ 6               │
# │ MSFT   ┆ 1        ┆ 2        ┆ 3        ┆ 6               │
# └────────┴──────────┴──────────┴──────────┴─────────────────┘

Footnotes

  1. Polars selectors https://docs.pola.rs/api/python/stable/reference/selectors.html

from polars.

starzar avatar starzar commented on August 16, 2024

@alexander-beedie thanks for the reply...the selector works fine for a single nested dataclass , but for multidimensional dataclasses, there is more functionality required.Are there any other ways to access deep nested fields of mutlidimensional dataclasses?

from polars.

alexander-beedie avatar alexander-beedie commented on August 16, 2024

You should probably just use the Struct field access, optionally in conjunction with selectors, optionally unnesting to simplify the top-level (as shown). Once it's in Polars it's not a dataclass anymore (obviously ;) it is a Struct composed from the top-level fields of the input dataclass, so it's optimal to interact with it as such.

I'd suggest providing a more specific example that's closer to your real data and asking in the Discord channel for some suggestions (I can pick this up there if you do so) 👍

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.