jsonCompare: Multiple results for comparison to json

Description Usage Arguments Author(s) Examples

View source: R/json.R

Description

Creates a json file from a sequence of events. This json will work with D3Sankey

Usage

1

Arguments

data

A data frame with first column the record identifier and a series of columns showig the allocations to compare

Author(s)

Simon Raper and James Thomson

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
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)

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