Coder Social home page Coder Social logo

Revert fancy range behavior. about d3-array HOT 8 CLOSED

d3 avatar d3 commented on May 1, 2024
Revert fancy range behavior.

from d3-array.

Comments (8)

andreasplesch avatar andreasplesch commented on May 1, 2024

The workaround used in d3/d3#2524 still applies:

eps=1e-15;
range(0, 64).forEach(function(m){rmax=Math.pow(2,m);
  range(1, 1000).forEach( function(d) {rmax=Math.pow(2,m);
  if (range(0, rmax*(1-eps), rmax/d).length !== d) {console.log(d) ;}})})

does not find mismatches in firefox; still need to test in chrome.

This suggests a similar fix, eg. adjust stop by (1-eps) * stop .

Thinking a bit more about it, it is probably necessary to adjust the difference between start and stop, rather than just stop; eg. use (stop - start)*(1-eps) to determine n.

from d3-array.

andreasplesch avatar andreasplesch commented on May 1, 2024

Here is a gist which does some checks of the range() function.

http://bl.ocks.org/andreasplesch/ada4b4e89738d4e5d4af

It turns out the workaround is useful but not very good for larger offsets (larger numbers) even when using the (stop-start)*(1-eps) adjustment .

from d3-array.

andreasplesch avatar andreasplesch commented on May 1, 2024

Well, I decided to go back to integer ranges.

Perhaps it is worthwhile to add to the documentation that if the number of elements in the generated array is expected to be exactly n, then one should use something like

// var step = (stop - start)/n;
var step = mystep;
d3.array(0, n).map( function(d) {return start + d * step;};

or perhaps provide this as another range function, say d3.nrange(), which takes start, step and number of elements n.

from d3-array.

mbostock avatar mbostock commented on May 1, 2024

Hmm. I’m tempted to remove the scale hack entirely, since it only works for some cases and makes the behavior harder to understand.

In general, you shouldn’t expect range(0, 1, 1/n) to return exactly n results because of the limitations of floating point. Using range(0, n).map(function(i) { return i / n; }) is recommended, and I’m in favor of documenting this recommendation.

from d3-array.

mbostock avatar mbostock commented on May 1, 2024

Related d3/d3#494, D3 version 2.7.5, commit d3/d3@87f48b7.

from d3-array.

andreasplesch avatar andreasplesch commented on May 1, 2024

Perhaps with the original commit above I now can understand what the conversion to integer is about but it did make the behaviour more opaque. I would say remove it, and perhaps emphasize the limitations a bit more in the documentation.
It took me a little to figure out that the range() behaviour was the issue when I originally used it for
http://bl.ocks.org/andreasplesch/49b2130b15425c1eebc0/
and got some weird results.
So documentation would be great. I tried to keep the additions in my pull request #6 concise but feel free of course to edit as you feel appropriate. I left the start value in there since for some it may not be too trivial to have seen in an example.

from d3-array.

mbostock avatar mbostock commented on May 1, 2024

Re-opening this request, because I think you are right that we should remove the fancy behavior.

from d3-array.

mbostock avatar mbostock commented on May 1, 2024

Fixed in 0.1.2; see d2364d4.

from d3-array.

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.