-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkov.dot
44 lines (44 loc) · 2.1 KB
/
markov.dot
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
digraph "Markov State Diagram" {
dairy;
drinks;
entry;
fruit;
spices;
checkout;
dairy -> checkout [key=0, label="0.09", weight="0.09"];
dairy -> dairy [color=red, key=0, label="0.74", weight="0.74"];
dairy -> drinks [key=0, label="0.06", weight="0.06"];
dairy -> fruit [key=0, label="0.05", weight="0.05"];
dairy -> spices [key=0, label="0.05", weight="0.05"];
dairy -> entry [key=0, label=0, style=invis, weight=0];
drinks -> checkout [key=0, label="0.21", weight="0.21"];
drinks -> dairy [key=0, label="0.01", weight="0.01"];
drinks -> drinks [color=red, key=0, label="0.61", weight="0.61"];
drinks -> fruit [key=0, label="0.09", weight="0.09"];
drinks -> spices [key=0, label="0.08", weight="0.08"];
drinks -> entry [key=0, label=0, style=invis, weight=0];
entry -> checkout [key=0, label="0.00", weight="0.00"];
entry -> dairy [key=0, label="0.28", weight="0.28"];
entry -> drinks [key=0, label="0.16", weight="0.16"];
entry -> fruit [key=0, label="0.36", weight="0.36"];
entry -> spices [key=0, label="0.20", weight="0.20"];
entry -> entry [key=0, label=0, style=invis, weight=0];
fruit -> checkout [key=0, label="0.21", weight="0.21"];
fruit -> dairy [key=0, label="0.09", weight="0.09"];
fruit -> drinks [key=0, label="0.05", weight="0.05"];
fruit -> fruit [color=red, key=0, label="0.61", weight="0.61"];
fruit -> spices [key=0, label="0.05", weight="0.05"];
fruit -> entry [key=0, label=0, style=invis, weight=0];
spices -> checkout [key=0, label="0.14", weight="0.14"];
spices -> dairy [key=0, label="0.19", weight="0.19"];
spices -> drinks [key=0, label="0.18", weight="0.18"];
spices -> fruit [key=0, label="0.10", weight="0.10"];
spices -> spices [color=red, key=0, label="0.39", weight="0.39"];
spices -> entry [key=0, label=0, style=invis, weight=0];
checkout -> checkout [key=0, label=1, weight=1];
checkout -> dairy [key=0, label=0, style=invis, weight=0];
checkout -> drinks [key=0, label=0, style=invis, weight=0];
checkout -> fruit [key=0, label=0, style=invis, weight=0];
checkout -> spices [key=0, label=0, style=invis, weight=0];
checkout -> entry [key=0, label=0, style=invis, weight=0];
}