-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod_graph
62 lines (62 loc) · 1.02 KB
/
mod_graph
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
digraph {
subgraph cluster44 {
nu [label="nu
~
Normal"]
lam [label="lam
~
Normal"]
label=44 labeljust=r labelloc=b style=rounded
}
subgraph cluster4 {
alpha [label="alpha
~
Normal"]
cuts [label="cuts
~
Normal"]
label=4 labeljust=r labelloc=b style=rounded
}
subgraph "cluster120 x 4" {
zeta [label="zeta
~
Normal"]
label="120 x 4" labeljust=r labelloc=b style=rounded
}
subgraph "cluster44 x 4" {
Lambda [label="Lambda
~
Deterministic" shape=box]
label="44 x 4" labeljust=r labelloc=b style=rounded
}
subgraph cluster3 {
gam [label="gam
~
Normal"]
label=3 labeljust=r labelloc=b style=rounded
}
subgraph "cluster4 x 4" {
Gamma [label="Gamma
~
Deterministic" shape=box]
label="4 x 4" labeljust=r labelloc=b style=rounded
}
subgraph "cluster120 x 44" {
M [label="M
~
Deterministic" shape=box]
Y [label="Y
~
OrderedLogistic" style=filled]
label="120 x 44" labeljust=r labelloc=b style=rounded
}
lam -> Lambda
gam -> Gamma
lam -> M
zeta -> M
gam -> M
alpha -> M
nu -> M
M -> Y
cuts -> Y
}