inst/visu/components/d3-plugins/sankey/README.md

Sankey Diagrams

Demo: http://bost.ocks.org/mike/sankey/

var sankey = d3.sankey()
    .size([width, height])
    .nodeWidth(15)
    .nodePadding(10)
    .nodes(energy.nodes)
    .links(energy.links)
    .layout(32);
var path = sankey.link();


jwist/visualizeR documentation built on Dec. 1, 2019, 5:11 p.m.