D3Sankey: D3 Sankey

Description Usage Arguments Author(s) References Examples

View source: R/D3.R

Description

Creates a html file containing json file and a D3.js Sankey

Usage

1
D3Sankey(JSON, file_out)

Arguments

JSON

A json object

the

location and name for the output html file

Author(s)

Simon Raper and James Thomson

References

Mike Bostock's lovely d3: http://d3js.org/

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
hc.ave <- hclust(dist(USArrests), "ave")
hc.single <- hclust(dist(USArrests), "single")
hc.ward <- hclust(dist(USArrests), "ward.D")

cut.ave<-cutree(hc.ave, k=6)
cut.single<-cutree(hc.single, k=6)
cut.ward<-cutree(hc.ward, k=6)

ClustComp<-data.frame(States=rownames(USArrests), ave=as.vector(cut.ave),single=as.vector(cut.single),ward=as.vector(cut.ward))

JSON<-jsonCompare(ClustComp)
D3Sankey(JSON, file_out="Sankey.html")

jamesthomson/R2D3 documentation built on May 18, 2019, 11:21 a.m.