This document demonstrates how to implement and plot a node link chart using minCombinR. This document assumes that you have already run the "Getting started with minCombinR".

devtools::load_all() # TODO: temporary once things are done
library(dplyr)
library(shiny)

Node Link Chart

# Specify that we would like a node link graph
node_link <- specify_single(chart_type = "node-link", data = "links_data")
# And plot!
plot(node_link)
# Specify that we would like a node link graph using the highschool dataset
node_link_chart <- specify_single(chart_type = "node-link", data = "highschool_dat")
# And plot!
plot(node_link_chart)


sfisher4/gevitR documentation built on Feb. 10, 2020, 6:29 p.m.