Giter VIP home page Giter VIP logo

Comments (4)

ritchie46 avatar ritchie46 commented on June 27, 2024 2

Maybe consider opening an issue at IEEE_754? ;)

from polars.

mcrumiller avatar mcrumiller commented on June 27, 2024

@Macfly to expound a bit on Ritchie's answer, numbers are stored in the computer in binary format with a limited number of bits, and so we cannot represent all numbers exactly. If you take a look at https://www.omnicalculator.com/other/floating-point and select Number to Floating Point and enter 799.32, you'll see that the number stored as a 32-bit float actually represents the number 799.32000732421875. If you set the number of bits to 64, you get a whole lot more precision, but it's still not exact: 799.32000000000005.

from polars.

Macfly avatar Macfly commented on June 27, 2024

I understand the floating accuracy but why with Numpy and Pandas, it is displayed as 799.32 with float32.
Is there something special with polars that always show the exact floating representation?

from polars.

nameexhaustion avatar nameexhaustion commented on June 27, 2024

numpy does the same thing actually

>>> pl.Series([799.32], dtype=pl.Float32).item()
799.3200073242188
>>> np.float32(799.32).item()
799.3200073242188
>>> np.float32(799.32).astype(np.float64)
799.3200073242188

when you do Series([799.32], dtype=pl.Float32)[0], you are actually performing these operations:

>>> np.float64(799.32).astype(np.float32).astype(np.float64).item()
799.3200073242188

you start with a 64-bit Python float, which gets casted to a 32-bit float by polars, and then back to a 64-bit Python float when you do Series[0]

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.