forked from geryan/covid19_australia_interventions
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pipeline_flowchart.gv
124 lines (98 loc) · 2.17 KB
/
pipeline_flowchart.gv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
digraph pipeline_flowchart {
# a 'graph' statement
graph [fontsize = 9
fontname = Helvetica
]
node []
mob [label = "mobility_change.R"]
rol [label = "rolling_delays.R"]
rmd [label = "Reff model data"]
par [label = "parse contact data"]
mic [label = "microdistancing_change.R"]
mac [label = "macrodistancing_change.R"]
ref [label = "R_effective.R"]
add [label = "Apple: directions for driving"]
adt [label = "Apple: directions for transit"]
adw [label = "Apple: directions for walking"]
cmd [label = "Citymapper: directions"]
gtg [label = "Google time at grocery and pharmacy"]
gtp [label = "Google: time at parks"]
gtr [label = "Google: time at residential"]
grr [label = "Google: time at retail and recreation"]
gtt [label = "Google: time at transit stations"]
gtw [label = "Google: time at work"]
app [label = "Apple-web"]
cmp [label = "Citymapper-web"]
goo [label = "Google-web"]
cmo [label = "cached_mobility.RDS"]
dmf [label = "datastream_model_fit"]
mmf [label = "multistate_model_fit"]
#{rank = same; mob; app;}
#{rank = 2; rol}
#{rank = 3; rmd}
#{rank = 4; par}
#{rank = 5; mic}
#{rank = 6; mac}
#{rank = 7; ref}
subgraph cluster_code {
label = "code";
{rank = same;
mob;
rol;
rmd;
par;
mic;
mac;
ref
}
}
subgraph cluster_data {
label = "data";
{rank = same;
add;
adt;
adw;
cmd;
gtg;
gtp;
gtr;
grr;
gtt;
gtw
}
}
subgraph cluster_source {
label = "source";
{rank = same}
app;
cmp;
goo;
}
subgraph cluster_images {
label = "images";
dmf;
mmf;
}
subgraph clulster_RDS {
label = "RDS";
cmo
}
subgraph cluster_cdv{
label = "csv"
}
# several 'edge' statements
mob -> rol -> rmd -> par -> mic -> mac -> ref
app -> add -> mob
app -> adt -> mob
app -> adw -> mob
cmp -> cmd -> mob
goo -> gtg -> mob
goo -> gtp -> mob
goo -> gtr -> mob
goo -> grr -> mob
goo -> gtt -> mob
goo -> gtw -> mob
mob -> cmo
mob -> mmf
mob -> dmf
}