GithubHelp home page GithubHelp logo

Comments (3)

mbostock avatar mbostock commented on April 25, 2024

Note that just removing the check @jasondavies added (|| 1 / value < 0) isn’t sufficient since the sign check needs to happen after rounding.

from d3-format.

kodi avatar kodi commented on April 25, 2024

Hi @mbostock, thanks for prompt response.

We are using 3.4.11, and not using format explicitly at all. (but we found that example online that i linked in tweet, and it turns out its not just in our scenario.

We are doing it like this:

setAxes: function() {
        var xyData = this.dataAsJson;
        var xExtent = d3.extent(xyData, function (d) {
            return d.x;
        });
        var yExtent = d3.extent(xyData, function (d) {
            return d.y;
        });
        if (xExtent[0] === xExtent[1]) {
            xExtent[1]++;
         }
        if (yExtent[0] === yExtent[1]) {
            yExtent[1]++;
        }
        this.x.domain(xExtent).nice();
        this.y.domain(yExtent).nice();
    }

if we remove .nice() the -0.00 disappears, but its probably because of new data range, and we are unable to test if we would get -0 without .nice()

Also, we really like the functionality that .nice() gives, and we would like to continue using it.

Is there any way that we could quick fix/override this behavior??

from d3-format.

mbostock avatar mbostock commented on April 25, 2024

If you’re not using a number formatter (such d3.format or scale.tickFormat, or d3.svg.axis), you’re going to have precision issues regardless (e.g., a tick displaying as 0.30000000000000004 because in IEEE 754, that’s the result from 0.1 + 0.2). Tick values cannot be guaranteed to be nice round values because JavaScript does not support arbitrary precision arithmetic.

Yes, scale.nice affects the domain and the observed behavior, but it can either introduce or eliminate precision issues. The behavior depends on the exact domain in question and the number of ticks you’re requesting. As with scale.ticks, the scale.nice method cannot guarantee that the domain will have perfectly rounded values because of the limited precision of IEEE 754.

If you’re displaying numbers to humans, you should use a number format such as d3.format. If you’re testing whether a number is zero, you should test within epsilon, e.g., if (-1e-12 < x && x < 1e-12) rather than if (!x).

from d3-format.

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.