d3.js sorting by rollup field

前端 未结 3 798
面向向阳花
面向向阳花 2021-01-21 08:24

I am having a JSON data and i want to group by a field and then sort by the count.

var data = [{\"Name\":\"Ravi\",\"Country\":\"India\"},
            {\"Name\":         


        
相关标签:
3条回答
  • 2021-01-21 08:39

    D3 provide the condition, ascending descending and you can use inside on sort method. No worries You are using a native javascript method with nice stability

    var countryCount = d3.nest()
                        .key(function(d) { return d.Country; })
                        .rollup(function(a){return a.length;})
                        .entries(data)
                        .sort(function(a, b){ return d3.ascending(a.values, b.values); })
    
    console.log(JSON.stringify(countryCount));
    
    0 讨论(0)
  • 2021-01-21 08:50

    d3 provides a method sortKeys in nest function which will sort your nested list based on the key you selected. You can pass d3.ascending or d3.descending based on your requirement.

    From your example:

    var countryCount = d3.nest()
                        .key(function(d) { return d.Country; })
                        .sortKeys(d3.ascending)
                        .entries(data);

    which will give you:

    [{"key":"India","values":4},{"key":"UK","values":3},{"key":"USA","values":1}]
    0 讨论(0)
  • 2021-01-21 08:56

    No, there is no built-in function giving the result you are after. d3.nest() does have a methode nest.sortValues() which will sort the leaf elements of nested data, but this is meaningless in your case since you did apply .rollup() leaving you with just one leaf per key. As you already mentioned, the way to go is using Array.prototype.sort().

    0 讨论(0)
提交回复
热议问题