Skip to content

Instantly share code, notes, and snippets.

@rokroskar
Created May 23, 2022 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rokroskar/003b9207375acae8925831f6f8e01892 to your computer and use it in GitHub Desktop.
Save rokroskar/003b9207375acae8925831f6f8e01892 to your computer and use it in GitHub Desktop.
digraph G {
compound = true;
rankdir=LR
user -> analyst[label="provide question\n & data"]
analyst -> QC[lhead=cluster_0];
subgraph cluster_0 {
style=filled;
color=lightgrey;
QC -> exploratory -> pilot -> consolidated;
label = "*analysis pipeline*";
}
user -> pilot[dir=both] ;
consolidated -> user
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment