Skip to content

Instantly share code, notes, and snippets.

View mkfreeman's full-sized avatar

Michael Freeman mkfreeman

View GitHub Profile
@mkfreeman
mkfreeman / index.html
Created October 17, 2017 06:03 — forked from d3noob/index.html
Sankey Diagram with v4
<!DOCTYPE html>
<meta charset="utf-8">
<title>SANKEY Experiment</title>
<style>
.node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
@mkfreeman
mkfreeman / README.md
Last active January 1, 2016 16:08 — forked from mbostock/.block

Click on any arc to zoom in. Click in the center to zoom out.

A sunburst is similar to a treemap, except it uses a radial layout. The root node of the tree is at the center, with leaves on the circumference. The area (or angle, depending on implementation) of each arc corresponds to its value. Sunburst design by John Stasko. Data courtesy Jeff Heer.