Published
Edited
Jul 18, 2018
Fork of Graphviz
1 fork
5 stars
Insert cell
Insert cell
Insert cell
complete = dot`
digraph G {
subgraph cluster_0 {
style=filled;
color=lightyellow;
node [style=filled,color=white];
"eligibility determination" -> eligible -> assessment;
label = "eligibility";
}
subgraph cluster_1 {
node [style=filled];
"DR process" -> "no agreement";
"DR process" -> "agreement";
"agreement" -> "DR monitoring";
"DR monitoring" -> "satisfactory outcome";
"DR monitoring" -> "no resolution reached";
"no resolution reached" -> "DR monitoring";
label = "dispute resolution";
color=green
}
subgraph cluster_3 {
node [style=filled,];
"compliance appraisal" -> "compliance investigation" -> "compliance monitoring";
label = "compliance";
color=blue
}
complaint -> "eligibility determination";
"eligibility determination" -> ineligible;
ineligible -> closed;
assessment -> "DR process";
assessment -> "compliance appraisal";
"no agreement" -> "compliance appraisal";
"no resolution reached" -> "compliance appraisal";
"satisfactory outcome" -> closed;
"compliance monitoring" -> closed;
complaint [shape=invhouse];
closed [shape=Msquare];
}
`
Insert cell
Type JavaScript, then Shift-Enter. Ctrl-space for more options. Arrow ↑/↓ to switch modes.

Insert cell
Insert cell
Insert cell
dot = require("@observablehq/graphviz@0.0.2/dist/graphviz.min.js")
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more