r2d3 (version 1.0)

jsonSeqFreq: Sequence frequency json

Description

Creates a json file of sequence frequencies. This json will work with D3 Sunburst

Creates a json file of sequence frequencies. This json will work with D3 Sunburst

Usage

jsonSeqFreq(seq, freq)
jsonSeqFreq(seq, freq)

Arguments

seq
A vector of sequences. Each item in sequence must be seperated by a -. For example item1-item2-item3
freq
A vector of frequencies for the sequences
seq
A vector of sequences. Each item in sequence must be seperated by a -. For example item1-item2-item3
freq
A vector of frequencies for the sequences

Examples

Run this code
data<-read.csv(file="https://gist.githubusercontent.com/kerryrodden/7090426/raw/8fce22c9e21711c757ee8a0df7dba5a42dea0d9c/visit-sequences.csv",
header = FALSE,  stringsAsFactors = FALSE
)
seq<-data[-13632,1]
freq<-data[-13632,2]
jsonSeqFreq(seq, freq)
data<-read.csv(file="https://gist.githubusercontent.com/kerryrodden/7090426/raw/8fce22c9e21711c757ee8a0df7dba5a42dea0d9c/visit-sequences.csv",
header = FALSE,  stringsAsFactors = FALSE
)
seq<-data[-13632,1]
freq<-data[-13632,2]
jsonSeqFreq(seq, freq)

Run the code above in your browser using DataLab