1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
digraph Tree {
node [shape=box, style="filled, rounded", color="black", fontname="helvetica"] ;
edge [fontname="helvetica"] ;
0 [label="x1 <= -0.303\nsquared_error = 0.006\nsamples = 200\nvalue = 0.088", fillcolor="#f6d6be"] ;
1 [label="x1 <= -0.408\nsquared_error = 0.002\nsamples = 44\nvalue = 0.172", fillcolor="#eb9d65"] ;
0 -> 1 [labeldistance=2.5, labelangle=45, headlabel="True"] ;
2 [label="squared_error = 0.001\nsamples = 20\nvalue = 0.213", fillcolor="#e58139"] ;
1 -> 2 ;
3 [label="squared_error = 0.001\nsamples = 24\nvalue = 0.138", fillcolor="#f0b489"] ;
1 -> 3 ;
4 [label="x1 <= 0.272\nsquared_error = 0.005\nsamples = 156\nvalue = 0.065", fillcolor="#fae6d7"] ;
0 -> 4 [labeldistance=2.5, labelangle=-45, headlabel="False"] ;
5 [label="squared_error = 0.001\nsamples = 110\nvalue = 0.028", fillcolor="#ffffff"] ;
4 -> 5 ;
6 [label="squared_error = 0.002\nsamples = 46\nvalue = 0.154", fillcolor="#edaa79"] ;
4 -> 6 ;
}
|