Coder Social home page Coder Social logo

Support natural sorting of keys. about d3-collection HOT 5 CLOSED

d3 avatar d3 commented on April 28, 2024
Support natural sorting of keys.

from d3-collection.

Comments (5)

mbostock avatar mbostock commented on April 28, 2024

Keys are always coerced to strings, so this is the expected behavior. Per the documentation for nest.key, emphasis added:

The key function will be invoked for each element in the input array and must return a string identifier to assign the element to its group.

Any return value that is not a string is coerced to a string.

from d3-collection.

gunn avatar gunn commented on April 28, 2024

Excellent response time.
I understand that it's expected and not a bug. It seems like it leaves sortKeys not very useful if it can't sort numbers though. Surely this will be a common problem?

from d3-collection.

mbostock avatar mbostock commented on April 28, 2024

You can either use a string that sorts lexicographically in the desired order (for example, formatting your dates appropriately with d3-time-format), or you can coerce back to a number in your comparator function. For example, assuming that d.date is a Date object and you want to group by unique dates (milliseconds):

const nest = d3.nest()
    .key(d => +d.date)
    .sortKeys((a, b) => a - b)
    .entries(data);

from d3-collection.

gunn avatar gunn commented on April 28, 2024

Okay workarounds for now then. I suppose this might change in the future with #11. Thank you Mike.

from d3-collection.

mbostock avatar mbostock commented on April 28, 2024

Exactly.

from d3-collection.

Related Issues (19)

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.