Skip to content

Instantly share code, notes, and snippets.

@ruiyang123
Created January 24, 2020 14:18
Show Gist options
  • Save ruiyang123/69666e8358fc8001b4ac51c855519578 to your computer and use it in GitHub Desktop.
Save ruiyang123/69666e8358fc8001b4ac51c855519578 to your computer and use it in GitHub Desktop.
fresh block
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</style>
</head>
<body>
<script>
var data = [{"name":"bob","v":2},
{"name":"bob","v":3},
{"name":"alice","v":2}];
console.log(d3.nest().key(function(d){return d.name;})
.rollup(function(v){return {
"sum" : d3.sum(v,function(e){return e.v;}),
"value" : v
}
})
.entries(data))
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment