Giter Site home page Giter Site logo

Comments (4)

NickCrews avatar NickCrews commented on August 18, 2024

This is the exact semantics I want!

Except may I recommend the signature of list() be
Def list(vals: Iterable, *, dtype=None) this would match the API of pythons list(), it would allow for idempotency, and the dtype allows you to pass in a 0 length array and still know the type.

We are solving this exact same thing in ibis-project/ibis#9473

from polars.

stinodego avatar stinodego commented on August 18, 2024

This was discussed in the linked issue. I don't believe adding a separate list function adds much, besides some additional input validation. I'll close this as not planned for now.

from polars.

mcrumiller avatar mcrumiller commented on August 18, 2024

@stinodego how would one collect a list of pl.List(...) columns into an outer list? As in take:

df = pl.DataFrame({
    "a": [[1, 2, 3]],
    "b": [[4, 5, 6]],
})

concatenating the columns into a list:

shape: (1, 1)
┌────────────────────────┐
│ literal                │
│ ---                    │
│ list[list[i64]]        │
╞════════════════════════╡
│ [[1, 2, 3], [4, 5, 6]] │
└────────────────────────┘

AFAIK there's no way to do this, because concat_list is designed to flatten lists, and there is no general method for converting columns into list elements.

from polars.

NickCrews avatar NickCrews commented on August 18, 2024

See my comment in the linked issue, it describes exactly what @mcrumiller talks about, we would need to add special-casing code to ibis in order to be able to support this.

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.