GithubHelp home page GithubHelp logo

Comments (12)

billylanchantin avatar billylanchantin commented on July 18, 2024 2

Rustler now supports 128 bit integers (thanks for initiating that, @Munksgaard!):

I think we can consider this issue blocked until rustler does another release. Otherwise we'd have to go off their master branch, which probably isn't worth the headache since they seem to release regularly.

from explorer.

LostKobrakai avatar LostKobrakai commented on July 18, 2024 1

Seems like this has already been released with rustler 0.32.1

from explorer.

philss avatar philss commented on July 18, 2024 1

The update of Rustler to v0.32.1 has landed on main :)

from explorer.

billylanchantin avatar billylanchantin commented on July 18, 2024

(Carrying over some of my comment as well)

Polars does support a decimal datatype:

If we want to support it as well, the tricky part will be representing things in Elixir. I see two options:

I haven't played with the Decimal datatype in Polars or Arrow, so I don't know if it maps nicely to the Decimal library's representation. But I have no objections to exploring either option (or some other thing I didn't think of).

from explorer.

josevalim avatar josevalim commented on July 18, 2024

There is a reference here: https://arrow.apache.org/docs/r/reference/data-type.html

The implementation is straight-forward, it is stored as a large integer, which we can easily convert to Decimal using Decimal.new/3. If a list of Decimals is given as input, we will need to compute the scale, using Decimal.scale. And for precision, we can use the maximum one.

from explorer.

billylanchantin avatar billylanchantin commented on July 18, 2024

👍 I think I'm comfortable adding Decimal as a dep.

@Munksgaard PRs welcome! If you're not able to, then I can take a crack when I have some time.

from explorer.

Munksgaard avatar Munksgaard commented on July 18, 2024

One complication that I can see is that Decimal allows both NaN and Infinity as values, which we don't have representations for in Polars as far as I can tell.

from explorer.

josevalim avatar josevalim commented on July 18, 2024

Yes, we should raise when encoding those. We will already have to do a prepass converting all decimals into int::128 or int::256, so we can raise on NaN and Infinity.

from explorer.

Munksgaard avatar Munksgaard commented on July 18, 2024

@Munksgaard PRs welcome! If you're not able to, then I can take a crack when I have some time.

I would love to help out, but realistically I won't be able to contribute anything significant in the next couple of weeks :-(

from explorer.

cigrainger avatar cigrainger commented on July 18, 2024

I'm comfortable with Decimal as a dep as well. It doesn't carry its own deps, pretty lightweight.

from explorer.

alexpearce avatar alexpearce commented on July 18, 2024

I had a crack at adding Decimal support and managed to add reading without too much trouble: alexpearce@709aa67

I found adding write support more challenging. It seems that Decimal support in polars-core isn't quite as mature as for other dtypes so write support requires a bit more work.

from explorer.

billylanchantin avatar billylanchantin commented on July 18, 2024

@alexpearce Feel free to open a PR. If you're still having trouble, we can discuss there why write support is more difficult.

from explorer.

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.