This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/statistics/figs/probtree03.dot
2014-10-02 08:01:29 +02:00

30 lines
751 B
Plaintext

digraph subject {
size="6,6";
node [color=lightblue2, style=filled];
rankdir=LR;
s10[label="P(k=0, subject#1)\n=0.7 P(k=0|#1)"];
s11[label="P(k=1, subject#1)\n=0.7 P(k=1|#1)"];
s1other[label="...", style=none, border=0, color=white];
s20[label="P(k=0, subject#2)\n=0.3 P(k=0|#2)"];
s21[label="P(k=1, subject#2)\n=0.3 P(k=1|#2)"];
s2other[label="...", style=none, border=0, color=white];
F1[label="subject #1"];
F2[label="subject #2"];
""->F1[label="p=0.7"];
""->F2[label="p=0.3"];
F1->s10[label="P(k=0|#1)"];
F1->s11[label="P(k=1|#1)"];
F1->s1other[label="..."];
F2->s20[label="P(k=0|#2)"];
F2->s21[label="P(k=1|#2)"];
F2->s2other[label="..."];
}