-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_entropy
More file actions
27 lines (27 loc) · 1.21 KB
/
Copy pathtree_entropy
File metadata and controls
27 lines (27 loc) · 1.21 KB
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
digraph {
rankdir=TB splines=polyline
node [fontname=Helvetica]
node1 [label=Weather color=lightblue shape=box style="rounded,filled"]
node2 [label=Parents color=lightblue shape=box style="rounded,filled"]
node1 -> node2 [label=Sunny]
node3 [label=Cinema color=lightgreen shape=ellipse style=filled]
node2 -> node3 [label=Yes]
node4 [label="Play Tennis" color=lightgreen shape=ellipse style=filled]
node2 -> node4 [label=No]
node5 [label=Parents color=lightblue shape=box style="rounded,filled"]
node1 -> node5 [label=Windy]
node6 [label=Cinema color=lightgreen shape=ellipse style=filled]
node5 -> node6 [label=Yes]
node7 [label="Financial Condition" color=lightblue shape=box style="rounded,filled"]
node5 -> node7 [label=No]
node8 [label=Cinema color=lightgreen shape=ellipse style=filled]
node7 -> node8 [label=Poor]
node9 [label=Shopping color=lightgreen shape=ellipse style=filled]
node7 -> node9 [label=Rich]
node10 [label=Parents color=lightblue shape=box style="rounded,filled"]
node1 -> node10 [label=Rainy]
node11 [label=Cinema color=lightgreen shape=ellipse style=filled]
node10 -> node11 [label=Yes]
node12 [label="Stay in" color=lightgreen shape=ellipse style=filled]
node10 -> node12 [label=No]
}