-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCIATox
More file actions
2281 lines (2281 loc) · 160 KB
/
CIATox
File metadata and controls
2281 lines (2281 loc) · 160 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
digraph Tree {
node [shape=box, style="filled, rounded", color="black", fontname=helvetica] ;
edge [fontname=helvetica] ;
0 [label=<classificacao_gravidade ≤ 0.5<br/>gini = 0.402<br/>samples = 30436<br/>value = [22842, 2475, 5119]<br/>class = Favorável>, fillcolor="#e58139b3"] ;
1 [label=<grupo_agente ≤ 1.5<br/>gini = 0.307<br/>samples = 27021<br/>value = [21986, 292, 4743]<br/>class = Favorável>, fillcolor="#e58139c5"] ;
0 -> 1 [labeldistance=2.5, labelangle=45, headlabel="True"] ;
2 [label=<grupo_agente ≤ 0.5<br/>gini = 0.057<br/>samples = 14894<br/>value = [14457, 213, 224]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
1 -> 2 ;
3 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.048<br/>samples = 6889<br/>value = [6722, 92, 75]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
2 -> 3 ;
4 [label=<mesoregiao ≤ 0.5<br/>gini = 0.043<br/>samples = 6648<br/>value = [6503, 84, 61]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
3 -> 4 ;
5 [label=<sexo ≤ 0.5<br/>gini = 0.066<br/>samples = 1722<br/>value = [1664, 29, 29]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
4 -> 5 ;
6 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.043<br/>samples = 1187<br/>value = [1161, 13, 13]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
5 -> 6 ;
7 [label=<local_atendimento ≤ 0.5<br/>gini = 0.098<br/>samples = 117<br/>value = [111, 1, 5]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
6 -> 7 ;
8 [label=<gini = 0.157<br/>samples = 59<br/>value = [54, 1, 4]<br/>class = Favorável>, fillcolor="#e58139e8"] ;
7 -> 8 ;
9 [label=<local_atendimento ≤ 2.5<br/>gini = 0.034<br/>samples = 58<br/>value = [57, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
7 -> 9 ;
10 [label=<gini = 0.0<br/>samples = 28<br/>value = [28, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
9 -> 10 ;
11 [label=<local_atendimento ≤ 4.5<br/>gini = 0.064<br/>samples = 30<br/>value = [29, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
9 -> 11 ;
12 [label=<gini = 0.08<br/>samples = 24<br/>value = [23, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
11 -> 12 ;
13 [label=<gini = 0.0<br/>samples = 6<br/>value = [6, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
11 -> 13 ;
14 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.037<br/>samples = 1070<br/>value = [1050, 12, 8]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
6 -> 14 ;
15 [label=<local_atendimento ≤ 0.5<br/>gini = 0.02<br/>samples = 592<br/>value = [586, 4, 2]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
14 -> 15 ;
16 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.028<br/>samples = 347<br/>value = [342, 4, 1]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
15 -> 16 ;
17 [label=<gini = 0.041<br/>samples = 97<br/>value = [95, 1, 1]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
16 -> 17 ;
18 [label=<gini = 0.024<br/>samples = 250<br/>value = [247, 3, 0]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
16 -> 18 ;
19 [label=<local_atendimento ≤ 1.5<br/>gini = 0.008<br/>samples = 245<br/>value = [244, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fe"] ;
15 -> 19 ;
20 [label=<gini = 0.012<br/>samples = 168<br/>value = [167, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
19 -> 20 ;
21 [label=<gini = 0.0<br/>samples = 77<br/>value = [77, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
19 -> 21 ;
22 [label=<local_atendimento ≤ 0.5<br/>gini = 0.057<br/>samples = 478<br/>value = [464, 8, 6]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
14 -> 22 ;
23 [label=<gini = 0.071<br/>samples = 303<br/>value = [292, 7, 4]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
22 -> 23 ;
24 [label=<local_atendimento ≤ 5.5<br/>gini = 0.034<br/>samples = 175<br/>value = [172, 1, 2]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
22 -> 24 ;
25 [label=<gini = 0.028<br/>samples = 141<br/>value = [139, 0, 2]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
24 -> 25 ;
26 [label=<gini = 0.057<br/>samples = 34<br/>value = [33, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
24 -> 26 ;
27 [label=<local_atendimento ≤ 0.5<br/>gini = 0.114<br/>samples = 535<br/>value = [503, 16, 16]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
5 -> 27 ;
28 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.153<br/>samples = 356<br/>value = [327, 15, 14]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
27 -> 28 ;
29 [label=<gini = 0.092<br/>samples = 63<br/>value = [60, 1, 2]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
28 -> 29 ;
30 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.166<br/>samples = 293<br/>value = [267, 14, 12]<br/>class = Favorável>, fillcolor="#e58139e7"] ;
28 -> 30 ;
31 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.152<br/>samples = 185<br/>value = [170, 9, 6]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
30 -> 31 ;
32 [label=<gini = 0.162<br/>samples = 81<br/>value = [74, 3, 4]<br/>class = Favorável>, fillcolor="#e58139e8"] ;
31 -> 32 ;
33 [label=<gini = 0.144<br/>samples = 104<br/>value = [96, 6, 2]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
31 -> 33 ;
34 [label=<gini = 0.188<br/>samples = 108<br/>value = [97, 5, 6]<br/>class = Favorável>, fillcolor="#e58139e4"] ;
30 -> 34 ;
35 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.033<br/>samples = 179<br/>value = [176, 1, 2]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
27 -> 35 ;
36 [label=<gini = 0.0<br/>samples = 141<br/>value = [141, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
35 -> 36 ;
37 [label=<local_atendimento ≤ 4.5<br/>gini = 0.148<br/>samples = 38<br/>value = [35, 1, 2]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
35 -> 37 ;
38 [label=<local_atendimento ≤ 1.5<br/>gini = 0.127<br/>samples = 30<br/>value = [28, 1, 1]<br/>class = Favorável>, fillcolor="#e58139ed"] ;
37 -> 38 ;
39 [label=<gini = 0.185<br/>samples = 20<br/>value = [18, 1, 1]<br/>class = Favorável>, fillcolor="#e58139e4"] ;
38 -> 39 ;
40 [label=<gini = 0.0<br/>samples = 10<br/>value = [10, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
38 -> 40 ;
41 [label=<gini = 0.219<br/>samples = 8<br/>value = [7, 0, 1]<br/>class = Favorável>, fillcolor="#e58139db"] ;
37 -> 41 ;
42 [label=<mesoregiao ≤ 4.5<br/>gini = 0.035<br/>samples = 4926<br/>value = [4839, 55, 32]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
4 -> 42 ;
43 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.033<br/>samples = 4636<br/>value = [4558, 48, 30]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
42 -> 43 ;
44 [label=<mesoregiao ≤ 1.5<br/>gini = 0.03<br/>samples = 1395<br/>value = [1374, 6, 15]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
43 -> 44 ;
45 [label=<local_atendimento ≤ 2.5<br/>gini = 0.049<br/>samples = 437<br/>value = [426, 3, 8]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
44 -> 45 ;
46 [label=<local_atendimento ≤ 0.5<br/>gini = 0.046<br/>samples = 387<br/>value = [378, 3, 6]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
45 -> 46 ;
47 [label=<gini = 0.057<br/>samples = 311<br/>value = [302, 3, 6]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
46 -> 47 ;
48 [label=<gini = 0.0<br/>samples = 76<br/>value = [76, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
46 -> 48 ;
49 [label=<local_atendimento ≤ 4.5<br/>gini = 0.077<br/>samples = 50<br/>value = [48, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
45 -> 49 ;
50 [label=<gini = 0.108<br/>samples = 35<br/>value = [33, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
49 -> 50 ;
51 [label=<gini = 0.0<br/>samples = 15<br/>value = [15, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
49 -> 51 ;
52 [label=<mesoregiao ≤ 3.5<br/>gini = 0.021<br/>samples = 958<br/>value = [948, 3, 7]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
44 -> 52 ;
53 [label=<mesoregiao ≤ 2.5<br/>gini = 0.013<br/>samples = 627<br/>value = [623, 1, 3]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
52 -> 53 ;
54 [label=<gini = 0.022<br/>samples = 267<br/>value = [264, 1, 2]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
53 -> 54 ;
55 [label=<gini = 0.006<br/>samples = 360<br/>value = [359, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fe"] ;
53 -> 55 ;
56 [label=<sexo ≤ 0.5<br/>gini = 0.036<br/>samples = 331<br/>value = [325, 2, 4]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
52 -> 56 ;
57 [label=<gini = 0.012<br/>samples = 164<br/>value = [163, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
56 -> 57 ;
58 [label=<gini = 0.059<br/>samples = 167<br/>value = [162, 2, 3]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
56 -> 58 ;
59 [label=<local_atendimento ≤ 1.5<br/>gini = 0.035<br/>samples = 3241<br/>value = [3184, 42, 15]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
43 -> 59 ;
60 [label=<local_atendimento ≤ 0.5<br/>gini = 0.034<br/>samples = 3125<br/>value = [3071, 42, 12]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
59 -> 60 ;
61 [label=<sexo ≤ 0.5<br/>gini = 0.038<br/>samples = 2489<br/>value = [2441, 36, 12]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
60 -> 61 ;
62 [label=<gini = 0.036<br/>samples = 1851<br/>value = [1817, 25, 9]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
61 -> 62 ;
63 [label=<gini = 0.043<br/>samples = 638<br/>value = [624, 11, 3]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
61 -> 63 ;
64 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.019<br/>samples = 636<br/>value = [630, 6, 0]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
60 -> 64 ;
65 [label=<gini = 0.012<br/>samples = 332<br/>value = [330, 2, 0]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
64 -> 65 ;
66 [label=<gini = 0.026<br/>samples = 304<br/>value = [300, 4, 0]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
64 -> 66 ;
67 [label=<mesoregiao ≤ 1.5<br/>gini = 0.05<br/>samples = 116<br/>value = [113, 0, 3]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
59 -> 67 ;
68 [label=<sexo ≤ 0.5<br/>gini = 0.142<br/>samples = 39<br/>value = [36, 0, 3]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
67 -> 68 ;
69 [label=<gini = 0.077<br/>samples = 25<br/>value = [24, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
68 -> 69 ;
70 [label=<gini = 0.245<br/>samples = 14<br/>value = [12, 0, 2]<br/>class = Favorável>, fillcolor="#e58139d4"] ;
68 -> 70 ;
71 [label=<gini = 0.0<br/>samples = 77<br/>value = [77, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
67 -> 71 ;
72 [label=<local_atendimento ≤ 0.5<br/>gini = 0.06<br/>samples = 290<br/>value = [281, 7, 2]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
42 -> 72 ;
73 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.071<br/>samples = 245<br/>value = [236, 7, 2]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
72 -> 73 ;
74 [label=<gini = 0.0<br/>samples = 34<br/>value = [34, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
73 -> 74 ;
75 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.082<br/>samples = 211<br/>value = [202, 7, 2]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
73 -> 75 ;
76 [label=<sexo ≤ 0.5<br/>gini = 0.122<br/>samples = 46<br/>value = [43, 3, 0]<br/>class = Favorável>, fillcolor="#e58139ed"] ;
75 -> 76 ;
77 [label=<gini = 0.121<br/>samples = 31<br/>value = [29, 2, 0]<br/>class = Favorável>, fillcolor="#e58139ed"] ;
76 -> 77 ;
78 [label=<gini = 0.124<br/>samples = 15<br/>value = [14, 1, 0]<br/>class = Favorável>, fillcolor="#e58139ed"] ;
76 -> 78 ;
79 [label=<sexo ≤ 0.5<br/>gini = 0.071<br/>samples = 165<br/>value = [159, 4, 2]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
75 -> 79 ;
80 [label=<gini = 0.092<br/>samples = 125<br/>value = [119, 4, 2]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
79 -> 80 ;
81 [label=<gini = 0.0<br/>samples = 40<br/>value = [40, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
79 -> 81 ;
82 [label=<gini = 0.0<br/>samples = 45<br/>value = [45, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
72 -> 82 ;
83 [label=<sexo ≤ 0.5<br/>gini = 0.17<br/>samples = 241<br/>value = [219, 8, 14]<br/>class = Favorável>, fillcolor="#e58139e6"] ;
3 -> 83 ;
84 [label=<mesoregiao ≤ 0.5<br/>gini = 0.096<br/>samples = 161<br/>value = [153, 3, 5]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
83 -> 84 ;
85 [label=<local_atendimento ≤ 0.5<br/>gini = 0.174<br/>samples = 64<br/>value = [58, 2, 4]<br/>class = Favorável>, fillcolor="#e58139e6"] ;
84 -> 85 ;
86 [label=<gini = 0.237<br/>samples = 38<br/>value = [33, 2, 3]<br/>class = Favorável>, fillcolor="#e58139db"] ;
85 -> 86 ;
87 [label=<local_atendimento ≤ 5.5<br/>gini = 0.074<br/>samples = 26<br/>value = [25, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
85 -> 87 ;
88 [label=<gini = 0.0<br/>samples = 18<br/>value = [18, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
87 -> 88 ;
89 [label=<gini = 0.219<br/>samples = 8<br/>value = [7, 0, 1]<br/>class = Favorável>, fillcolor="#e58139db"] ;
87 -> 89 ;
90 [label=<mesoregiao ≤ 4.5<br/>gini = 0.041<br/>samples = 97<br/>value = [95, 1, 1]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
84 -> 90 ;
91 [label=<local_atendimento ≤ 0.5<br/>gini = 0.022<br/>samples = 88<br/>value = [87, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
90 -> 91 ;
92 [label=<gini = 0.0<br/>samples = 63<br/>value = [63, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
91 -> 92 ;
93 [label=<mesoregiao ≤ 2.5<br/>gini = 0.077<br/>samples = 25<br/>value = [24, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
91 -> 93 ;
94 [label=<mesoregiao ≤ 1.5<br/>gini = 0.18<br/>samples = 10<br/>value = [9, 0, 1]<br/>class = Favorável>, fillcolor="#e58139e3"] ;
93 -> 94 ;
95 [label=<gini = 0.0<br/>samples = 5<br/>value = [5, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
94 -> 95 ;
96 [label=<gini = 0.32<br/>samples = 5<br/>value = [4, 0, 1]<br/>class = Favorável>, fillcolor="#e58139bf"] ;
94 -> 96 ;
97 [label=<gini = 0.0<br/>samples = 15<br/>value = [15, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
93 -> 97 ;
98 [label=<local_atendimento ≤ 1.5<br/>gini = 0.198<br/>samples = 9<br/>value = [8, 1, 0]<br/>class = Favorável>, fillcolor="#e58139df"] ;
90 -> 98 ;
99 [label=<gini = 0.219<br/>samples = 8<br/>value = [7, 1, 0]<br/>class = Favorável>, fillcolor="#e58139db"] ;
98 -> 99 ;
100 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
98 -> 100 ;
101 [label=<local_atendimento ≤ 0.5<br/>gini = 0.303<br/>samples = 80<br/>value = [66, 5, 9]<br/>class = Favorável>, fillcolor="#e58139cd"] ;
83 -> 101 ;
102 [label=<mesoregiao ≤ 0.5<br/>gini = 0.359<br/>samples = 60<br/>value = [47, 4, 9]<br/>class = Favorável>, fillcolor="#e58139be"] ;
101 -> 102 ;
103 [label=<gini = 0.418<br/>samples = 15<br/>value = [11, 3, 1]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
102 -> 103 ;
104 [label=<mesoregiao ≤ 4.5<br/>gini = 0.328<br/>samples = 45<br/>value = [36, 1, 8]<br/>class = Favorável>, fillcolor="#e58139c1"] ;
102 -> 104 ;
105 [label=<mesoregiao ≤ 1.5<br/>gini = 0.34<br/>samples = 43<br/>value = [34, 1, 8]<br/>class = Favorável>, fillcolor="#e58139bd"] ;
104 -> 105 ;
106 [label=<gini = 0.357<br/>samples = 14<br/>value = [11, 1, 2]<br/>class = Favorável>, fillcolor="#e58139bf"] ;
105 -> 106 ;
107 [label=<mesoregiao ≤ 2.5<br/>gini = 0.328<br/>samples = 29<br/>value = [23, 0, 6]<br/>class = Favorável>, fillcolor="#e58139bc"] ;
105 -> 107 ;
108 [label=<gini = 0.375<br/>samples = 12<br/>value = [9, 0, 3]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
107 -> 108 ;
109 [label=<gini = 0.291<br/>samples = 17<br/>value = [14, 0, 3]<br/>class = Favorável>, fillcolor="#e58139c8"] ;
107 -> 109 ;
110 [label=<gini = 0.0<br/>samples = 2<br/>value = [2, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
104 -> 110 ;
111 [label=<mesoregiao ≤ 4.5<br/>gini = 0.095<br/>samples = 20<br/>value = [19, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
101 -> 111 ;
112 [label=<gini = 0.0<br/>samples = 19<br/>value = [19, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
111 -> 112 ;
113 [label=<gini = 0.0<br/>samples = 1<br/>value = [0, 1, 0]<br/>class = Desfavorável>, fillcolor="#39e581ff"] ;
111 -> 113 ;
114 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.066<br/>samples = 8005<br/>value = [7735, 121, 149]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
2 -> 114 ;
115 [label=<mesoregiao ≤ 3.5<br/>gini = 0.109<br/>samples = 294<br/>value = [277, 1, 16]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
114 -> 115 ;
116 [label=<local_atendimento ≤ 0.5<br/>gini = 0.099<br/>samples = 251<br/>value = [238, 1, 12]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
115 -> 116 ;
117 [label=<mesoregiao ≤ 2.5<br/>gini = 0.082<br/>samples = 165<br/>value = [158, 1, 6]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
116 -> 117 ;
118 [label=<sexo ≤ 0.5<br/>gini = 0.068<br/>samples = 142<br/>value = [137, 1, 4]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
117 -> 118 ;
119 [label=<mesoregiao ≤ 1.5<br/>gini = 0.106<br/>samples = 54<br/>value = [51, 1, 2]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
118 -> 119 ;
120 [label=<mesoregiao ≤ 0.5<br/>gini = 0.053<br/>samples = 37<br/>value = [36, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
119 -> 120 ;
121 [label=<gini = 0.0<br/>samples = 16<br/>value = [16, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
120 -> 121 ;
122 [label=<gini = 0.091<br/>samples = 21<br/>value = [20, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
120 -> 122 ;
123 [label=<gini = 0.215<br/>samples = 17<br/>value = [15, 1, 1]<br/>class = Favorável>, fillcolor="#e58139df"] ;
119 -> 123 ;
124 [label=<mesoregiao ≤ 0.5<br/>gini = 0.044<br/>samples = 88<br/>value = [86, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
118 -> 124 ;
125 [label=<gini = 0.117<br/>samples = 16<br/>value = [15, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ee"] ;
124 -> 125 ;
126 [label=<mesoregiao ≤ 1.5<br/>gini = 0.027<br/>samples = 72<br/>value = [71, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
124 -> 126 ;
127 [label=<gini = 0.048<br/>samples = 41<br/>value = [40, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
126 -> 127 ;
128 [label=<gini = 0.0<br/>samples = 31<br/>value = [31, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
126 -> 128 ;
129 [label=<sexo ≤ 0.5<br/>gini = 0.159<br/>samples = 23<br/>value = [21, 0, 2]<br/>class = Favorável>, fillcolor="#e58139e7"] ;
117 -> 129 ;
130 [label=<gini = 0.18<br/>samples = 10<br/>value = [9, 0, 1]<br/>class = Favorável>, fillcolor="#e58139e3"] ;
129 -> 130 ;
131 [label=<gini = 0.142<br/>samples = 13<br/>value = [12, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
129 -> 131 ;
132 [label=<mesoregiao ≤ 0.5<br/>gini = 0.13<br/>samples = 86<br/>value = [80, 0, 6]<br/>class = Favorável>, fillcolor="#e58139ec"] ;
116 -> 132 ;
133 [label=<local_atendimento ≤ 2.5<br/>gini = 0.198<br/>samples = 36<br/>value = [32, 0, 4]<br/>class = Favorável>, fillcolor="#e58139df"] ;
132 -> 133 ;
134 [label=<sexo ≤ 0.5<br/>gini = 0.337<br/>samples = 14<br/>value = [11, 0, 3]<br/>class = Favorável>, fillcolor="#e58139b9"] ;
133 -> 134 ;
135 [label=<local_atendimento ≤ 1.5<br/>gini = 0.278<br/>samples = 6<br/>value = [5, 0, 1]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
134 -> 135 ;
136 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
135 -> 136 ;
137 [label=<gini = 0.444<br/>samples = 3<br/>value = [2, 0, 1]<br/>class = Favorável>, fillcolor="#e581397f"] ;
135 -> 137 ;
138 [label=<local_atendimento ≤ 1.5<br/>gini = 0.375<br/>samples = 8<br/>value = [6, 0, 2]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
134 -> 138 ;
139 [label=<gini = 0.5<br/>samples = 2<br/>value = [1, 0, 1]<br/>class = Favorável>, fillcolor="#e5813900"] ;
138 -> 139 ;
140 [label=<gini = 0.278<br/>samples = 6<br/>value = [5, 0, 1]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
138 -> 140 ;
141 [label=<local_atendimento ≤ 4.0<br/>gini = 0.087<br/>samples = 22<br/>value = [21, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f3"] ;
133 -> 141 ;
142 [label=<sexo ≤ 0.5<br/>gini = 0.111<br/>samples = 17<br/>value = [16, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
141 -> 142 ;
143 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
142 -> 143 ;
144 [label=<gini = 0.133<br/>samples = 14<br/>value = [13, 0, 1]<br/>class = Favorável>, fillcolor="#e58139eb"] ;
142 -> 144 ;
145 [label=<gini = 0.0<br/>samples = 5<br/>value = [5, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
141 -> 145 ;
146 [label=<local_atendimento ≤ 2.5<br/>gini = 0.077<br/>samples = 50<br/>value = [48, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
132 -> 146 ;
147 [label=<sexo ≤ 0.5<br/>gini = 0.044<br/>samples = 44<br/>value = [43, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
146 -> 147 ;
148 [label=<mesoregiao ≤ 1.5<br/>gini = 0.111<br/>samples = 17<br/>value = [16, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
147 -> 148 ;
149 [label=<gini = 0.245<br/>samples = 7<br/>value = [6, 0, 1]<br/>class = Favorável>, fillcolor="#e58139d4"] ;
148 -> 149 ;
150 [label=<gini = 0.0<br/>samples = 10<br/>value = [10, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
148 -> 150 ;
151 [label=<gini = 0.0<br/>samples = 27<br/>value = [27, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
147 -> 151 ;
152 [label=<sexo ≤ 0.5<br/>gini = 0.278<br/>samples = 6<br/>value = [5, 0, 1]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
146 -> 152 ;
153 [label=<gini = 0.0<br/>samples = 4<br/>value = [4, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
152 -> 153 ;
154 [label=<mesoregiao ≤ 2.5<br/>gini = 0.5<br/>samples = 2<br/>value = [1, 0, 1]<br/>class = Favorável>, fillcolor="#e5813900"] ;
152 -> 154 ;
155 [label=<gini = 0.0<br/>samples = 1<br/>value = [0, 0, 1]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
154 -> 155 ;
156 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
154 -> 156 ;
157 [label=<local_atendimento ≤ 1.5<br/>gini = 0.169<br/>samples = 43<br/>value = [39, 0, 4]<br/>class = Favorável>, fillcolor="#e58139e5"] ;
115 -> 157 ;
158 [label=<local_atendimento ≤ 0.5<br/>gini = 0.149<br/>samples = 37<br/>value = [34, 0, 3]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
157 -> 158 ;
159 [label=<mesoregiao ≤ 4.5<br/>gini = 0.161<br/>samples = 34<br/>value = [31, 0, 3]<br/>class = Favorável>, fillcolor="#e58139e6"] ;
158 -> 159 ;
160 [label=<sexo ≤ 0.5<br/>gini = 0.147<br/>samples = 25<br/>value = [23, 0, 2]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
159 -> 160 ;
161 [label=<gini = 0.0<br/>samples = 8<br/>value = [8, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
160 -> 161 ;
162 [label=<gini = 0.208<br/>samples = 17<br/>value = [15, 0, 2]<br/>class = Favorável>, fillcolor="#e58139dd"] ;
160 -> 162 ;
163 [label=<sexo ≤ 0.5<br/>gini = 0.198<br/>samples = 9<br/>value = [8, 0, 1]<br/>class = Favorável>, fillcolor="#e58139df"] ;
159 -> 163 ;
164 [label=<gini = 0.375<br/>samples = 4<br/>value = [3, 0, 1]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
163 -> 164 ;
165 [label=<gini = 0.0<br/>samples = 5<br/>value = [5, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
163 -> 165 ;
166 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
158 -> 166 ;
167 [label=<sexo ≤ 0.5<br/>gini = 0.278<br/>samples = 6<br/>value = [5, 0, 1]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
157 -> 167 ;
168 [label=<local_atendimento ≤ 2.5<br/>gini = 0.444<br/>samples = 3<br/>value = [2, 0, 1]<br/>class = Favorável>, fillcolor="#e581397f"] ;
167 -> 168 ;
169 [label=<mesoregiao ≤ 4.5<br/>gini = 0.5<br/>samples = 2<br/>value = [1, 0, 1]<br/>class = Favorável>, fillcolor="#e5813900"] ;
168 -> 169 ;
170 [label=<gini = 0.0<br/>samples = 1<br/>value = [0, 0, 1]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
169 -> 170 ;
171 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
169 -> 171 ;
172 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
168 -> 172 ;
173 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
167 -> 173 ;
174 [label=<mesoregiao ≤ 0.5<br/>gini = 0.064<br/>samples = 7711<br/>value = [7458, 120, 133]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
114 -> 174 ;
175 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.043<br/>samples = 1366<br/>value = [1336, 9, 21]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
174 -> 175 ;
176 [label=<sexo ≤ 0.5<br/>gini = 0.017<br/>samples = 235<br/>value = [233, 0, 2]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
175 -> 176 ;
177 [label=<local_atendimento ≤ 0.5<br/>gini = 0.04<br/>samples = 99<br/>value = [97, 0, 2]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
176 -> 177 ;
178 [label=<gini = 0.0<br/>samples = 54<br/>value = [54, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
177 -> 178 ;
179 [label=<local_atendimento ≤ 1.5<br/>gini = 0.085<br/>samples = 45<br/>value = [43, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f3"] ;
177 -> 179 ;
180 [label=<gini = 0.153<br/>samples = 12<br/>value = [11, 0, 1]<br/>class = Favorável>, fillcolor="#e58139e8"] ;
179 -> 180 ;
181 [label=<local_atendimento ≤ 4.5<br/>gini = 0.059<br/>samples = 33<br/>value = [32, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
179 -> 181 ;
182 [label=<gini = 0.071<br/>samples = 27<br/>value = [26, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
181 -> 182 ;
183 [label=<gini = 0.0<br/>samples = 6<br/>value = [6, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
181 -> 183 ;
184 [label=<gini = 0.0<br/>samples = 136<br/>value = [136, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
176 -> 184 ;
185 [label=<local_atendimento ≤ 5.5<br/>gini = 0.049<br/>samples = 1131<br/>value = [1103, 9, 19]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
175 -> 185 ;
186 [label=<sexo ≤ 0.5<br/>gini = 0.048<br/>samples = 1071<br/>value = [1045, 7, 19]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
185 -> 186 ;
187 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.055<br/>samples = 493<br/>value = [479, 3, 11]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
186 -> 187 ;
188 [label=<local_atendimento ≤ 4.0<br/>gini = 0.06<br/>samples = 420<br/>value = [407, 3, 10]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
187 -> 188 ;
189 [label=<gini = 0.058<br/>samples = 403<br/>value = [391, 3, 9]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
188 -> 189 ;
190 [label=<gini = 0.111<br/>samples = 17<br/>value = [16, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
188 -> 190 ;
191 [label=<local_atendimento ≤ 0.5<br/>gini = 0.027<br/>samples = 73<br/>value = [72, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
187 -> 191 ;
192 [label=<gini = 0.057<br/>samples = 34<br/>value = [33, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
191 -> 192 ;
193 [label=<gini = 0.0<br/>samples = 39<br/>value = [39, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
191 -> 193 ;
194 [label=<local_atendimento ≤ 2.5<br/>gini = 0.041<br/>samples = 578<br/>value = [566, 4, 8]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
186 -> 194 ;
195 [label=<local_atendimento ≤ 0.5<br/>gini = 0.046<br/>samples = 471<br/>value = [460, 4, 7]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
194 -> 195 ;
196 [label=<gini = 0.035<br/>samples = 341<br/>value = [335, 1, 5]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
195 -> 196 ;
197 [label=<gini = 0.075<br/>samples = 130<br/>value = [125, 3, 2]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
195 -> 197 ;
198 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.019<br/>samples = 107<br/>value = [106, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
194 -> 198 ;
199 [label=<gini = 0.074<br/>samples = 26<br/>value = [25, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
198 -> 199 ;
200 [label=<gini = 0.0<br/>samples = 81<br/>value = [81, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
198 -> 200 ;
201 [label=<sexo ≤ 0.5<br/>gini = 0.064<br/>samples = 60<br/>value = [58, 2, 0]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
185 -> 201 ;
202 [label=<gini = 0.0<br/>samples = 34<br/>value = [34, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
201 -> 202 ;
203 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.142<br/>samples = 26<br/>value = [24, 2, 0]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
201 -> 203 ;
204 [label=<gini = 0.278<br/>samples = 6<br/>value = [5, 1, 0]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
203 -> 204 ;
205 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.095<br/>samples = 20<br/>value = [19, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
203 -> 205 ;
206 [label=<gini = 0.1<br/>samples = 19<br/>value = [18, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
205 -> 206 ;
207 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
205 -> 207 ;
208 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.068<br/>samples = 6345<br/>value = [6122, 111, 112]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
174 -> 208 ;
209 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.077<br/>samples = 2286<br/>value = [2195, 36, 55]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
208 -> 209 ;
210 [label=<local_atendimento ≤ 1.5<br/>gini = 0.052<br/>samples = 900<br/>value = [876, 10, 14]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
209 -> 210 ;
211 [label=<mesoregiao ≤ 4.5<br/>gini = 0.057<br/>samples = 783<br/>value = [760, 9, 14]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
210 -> 211 ;
212 [label=<sexo ≤ 0.5<br/>gini = 0.054<br/>samples = 722<br/>value = [702, 7, 13]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
211 -> 212 ;
213 [label=<gini = 0.06<br/>samples = 293<br/>value = [284, 2, 7]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
212 -> 213 ;
214 [label=<gini = 0.05<br/>samples = 429<br/>value = [418, 5, 6]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
212 -> 214 ;
215 [label=<local_atendimento ≤ 0.5<br/>gini = 0.095<br/>samples = 61<br/>value = [58, 2, 1]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
211 -> 215 ;
216 [label=<gini = 0.065<br/>samples = 59<br/>value = [57, 2, 0]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
215 -> 216 ;
217 [label=<gini = 0.5<br/>samples = 2<br/>value = [1, 0, 1]<br/>class = Favorável>, fillcolor="#e5813900"] ;
215 -> 217 ;
218 [label=<sexo ≤ 0.5<br/>gini = 0.017<br/>samples = 117<br/>value = [116, 1, 0]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
210 -> 218 ;
219 [label=<mesoregiao ≤ 2.5<br/>gini = 0.043<br/>samples = 45<br/>value = [44, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
218 -> 219 ;
220 [label=<gini = 0.059<br/>samples = 33<br/>value = [32, 1, 0]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
219 -> 220 ;
221 [label=<gini = 0.0<br/>samples = 12<br/>value = [12, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
219 -> 221 ;
222 [label=<gini = 0.0<br/>samples = 72<br/>value = [72, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
218 -> 222 ;
223 [label=<local_atendimento ≤ 4.5<br/>gini = 0.093<br/>samples = 1386<br/>value = [1319, 26, 41]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
209 -> 223 ;
224 [label=<mesoregiao ≤ 2.5<br/>gini = 0.091<br/>samples = 1360<br/>value = [1296, 26, 38]<br/>class = Favorável>, fillcolor="#e58139f3"] ;
223 -> 224 ;
225 [label=<local_atendimento ≤ 0.5<br/>gini = 0.106<br/>samples = 816<br/>value = [771, 18, 27]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
224 -> 225 ;
226 [label=<gini = 0.12<br/>samples = 572<br/>value = [536, 13, 23]<br/>class = Favorável>, fillcolor="#e58139ee"] ;
225 -> 226 ;
227 [label=<gini = 0.072<br/>samples = 244<br/>value = [235, 5, 4]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
225 -> 227 ;
228 [label=<mesoregiao ≤ 4.5<br/>gini = 0.068<br/>samples = 544<br/>value = [525, 8, 11]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
224 -> 228 ;
229 [label=<gini = 0.075<br/>samples = 413<br/>value = [397, 6, 10]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
228 -> 229 ;
230 [label=<gini = 0.045<br/>samples = 131<br/>value = [128, 2, 1]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
228 -> 230 ;
231 [label=<mesoregiao ≤ 3.5<br/>gini = 0.204<br/>samples = 26<br/>value = [23, 0, 3]<br/>class = Favorável>, fillcolor="#e58139de"] ;
223 -> 231 ;
232 [label=<mesoregiao ≤ 2.5<br/>gini = 0.355<br/>samples = 13<br/>value = [10, 0, 3]<br/>class = Favorável>, fillcolor="#e58139b3"] ;
231 -> 232 ;
233 [label=<gini = 0.278<br/>samples = 12<br/>value = [10, 0, 2]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
232 -> 233 ;
234 [label=<gini = 0.0<br/>samples = 1<br/>value = [0, 0, 1]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
232 -> 234 ;
235 [label=<gini = 0.0<br/>samples = 13<br/>value = [13, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
231 -> 235 ;
236 [label=<local_atendimento ≤ 1.5<br/>gini = 0.063<br/>samples = 4059<br/>value = [3927, 75, 57]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
208 -> 236 ;
237 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.066<br/>samples = 3464<br/>value = [3347, 71, 46]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
236 -> 237 ;
238 [label=<local_atendimento ≤ 0.5<br/>gini = 0.063<br/>samples = 2628<br/>value = [2543, 49, 36]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
237 -> 238 ;
239 [label=<mesoregiao ≤ 1.5<br/>gini = 0.06<br/>samples = 2080<br/>value = [2016, 37, 27]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
238 -> 239 ;
240 [label=<gini = 0.048<br/>samples = 575<br/>value = [561, 10, 4]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
239 -> 240 ;
241 [label=<gini = 0.065<br/>samples = 1505<br/>value = [1455, 27, 23]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
239 -> 241 ;
242 [label=<mesoregiao ≤ 2.5<br/>gini = 0.074<br/>samples = 548<br/>value = [527, 12, 9]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
238 -> 242 ;
243 [label=<gini = 0.093<br/>samples = 312<br/>value = [297, 7, 8]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
242 -> 243 ;
244 [label=<gini = 0.05<br/>samples = 236<br/>value = [230, 5, 1]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
242 -> 244 ;
245 [label=<mesoregiao ≤ 1.5<br/>gini = 0.074<br/>samples = 836<br/>value = [804, 22, 10]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
237 -> 245 ;
246 [label=<sexo ≤ 0.5<br/>gini = 0.096<br/>samples = 220<br/>value = [209, 9, 2]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
245 -> 246 ;
247 [label=<gini = 0.146<br/>samples = 89<br/>value = [82, 6, 1]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
246 -> 247 ;
248 [label=<gini = 0.06<br/>samples = 131<br/>value = [127, 3, 1]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
246 -> 248 ;
249 [label=<mesoregiao ≤ 3.5<br/>gini = 0.066<br/>samples = 616<br/>value = [595, 13, 8]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
245 -> 249 ;
250 [label=<gini = 0.052<br/>samples = 453<br/>value = [441, 8, 4]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
249 -> 250 ;
251 [label=<gini = 0.106<br/>samples = 163<br/>value = [154, 5, 4]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
249 -> 251 ;
252 [label=<mesoregiao ≤ 3.5<br/>gini = 0.049<br/>samples = 595<br/>value = [580, 4, 11]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
236 -> 252 ;
253 [label=<sexo ≤ 0.5<br/>gini = 0.034<br/>samples = 470<br/>value = [462, 4, 4]<br/>class = Favorável>, fillcolor="#e58139fb"] ;
252 -> 253 ;
254 [label=<mesoregiao ≤ 2.5<br/>gini = 0.051<br/>samples = 230<br/>value = [224, 3, 3]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
253 -> 254 ;
255 [label=<gini = 0.057<br/>samples = 206<br/>value = [200, 3, 3]<br/>class = Favorável>, fillcolor="#e58139f7"] ;
254 -> 255 ;
256 [label=<gini = 0.0<br/>samples = 24<br/>value = [24, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
254 -> 256 ;
257 [label=<mesoregiao ≤ 1.5<br/>gini = 0.017<br/>samples = 240<br/>value = [238, 1, 1]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
253 -> 257 ;
258 [label=<gini = 0.02<br/>samples = 99<br/>value = [98, 1, 0]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
257 -> 258 ;
259 [label=<gini = 0.014<br/>samples = 141<br/>value = [140, 0, 1]<br/>class = Favorável>, fillcolor="#e58139fd"] ;
257 -> 259 ;
260 [label=<mesoregiao ≤ 4.5<br/>gini = 0.106<br/>samples = 125<br/>value = [118, 0, 7]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
252 -> 260 ;
261 [label=<local_atendimento ≤ 4.5<br/>gini = 0.139<br/>samples = 80<br/>value = [74, 0, 6]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
260 -> 261 ;
262 [label=<gini = 0.157<br/>samples = 70<br/>value = [64, 0, 6]<br/>class = Favorável>, fillcolor="#e58139e7"] ;
261 -> 262 ;
263 [label=<gini = 0.0<br/>samples = 10<br/>value = [10, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
261 -> 263 ;
264 [label=<local_atendimento ≤ 2.5<br/>gini = 0.043<br/>samples = 45<br/>value = [44, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
260 -> 264 ;
265 [label=<gini = 0.0<br/>samples = 34<br/>value = [34, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
264 -> 265 ;
266 [label=<gini = 0.165<br/>samples = 11<br/>value = [10, 0, 1]<br/>class = Favorável>, fillcolor="#e58139e6"] ;
264 -> 266 ;
267 [label=<grupo_agente ≤ 2.5<br/>gini = 0.476<br/>samples = 12127<br/>value = [7529, 79, 4519]<br/>class = Favorável>, fillcolor="#e5813965"] ;
1 -> 267 ;
268 [label=<mesoregiao ≤ 0.5<br/>gini = 0.311<br/>samples = 5248<br/>value = [1004, 6, 4238]<br/>class = Não Exposição>, fillcolor="#8139e5c2"] ;
267 -> 268 ;
269 [label=<local_atendimento ≤ 5.5<br/>gini = 0.244<br/>samples = 1591<br/>value = [221, 4, 1366]<br/>class = Não Exposição>, fillcolor="#8139e5d5"] ;
268 -> 269 ;
270 [label=<local_atendimento ≤ 4.0<br/>gini = 0.235<br/>samples = 1485<br/>value = [198, 3, 1284]<br/>class = Não Exposição>, fillcolor="#8139e5d7"] ;
269 -> 270 ;
271 [label=<local_atendimento ≤ 0.5<br/>gini = 0.245<br/>samples = 1373<br/>value = [193, 3, 1177]<br/>class = Não Exposição>, fillcolor="#8139e5d5"] ;
270 -> 271 ;
272 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.229<br/>samples = 755<br/>value = [96, 3, 656]<br/>class = Não Exposição>, fillcolor="#8139e5d9"] ;
271 -> 272 ;
273 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.247<br/>samples = 458<br/>value = [65, 1, 392]<br/>class = Não Exposição>, fillcolor="#8139e5d4"] ;
272 -> 273 ;
274 [label=<sexo ≤ 0.5<br/>gini = 0.282<br/>samples = 106<br/>value = [18, 0, 88]<br/>class = Não Exposição>, fillcolor="#8139e5cb"] ;
273 -> 274 ;
275 [label=<gini = 0.252<br/>samples = 54<br/>value = [8, 0, 46]<br/>class = Não Exposição>, fillcolor="#8139e5d3"] ;
274 -> 275 ;
276 [label=<gini = 0.311<br/>samples = 52<br/>value = [10, 0, 42]<br/>class = Não Exposição>, fillcolor="#8139e5c2"] ;
274 -> 276 ;
277 [label=<sexo ≤ 0.5<br/>gini = 0.236<br/>samples = 352<br/>value = [47, 1, 304]<br/>class = Não Exposição>, fillcolor="#8139e5d7"] ;
273 -> 277 ;
278 [label=<gini = 0.232<br/>samples = 173<br/>value = [22, 1, 150]<br/>class = Não Exposição>, fillcolor="#8139e5d8"] ;
277 -> 278 ;
279 [label=<gini = 0.24<br/>samples = 179<br/>value = [25, 0, 154]<br/>class = Não Exposição>, fillcolor="#8139e5d6"] ;
277 -> 279 ;
280 [label=<sexo ≤ 0.5<br/>gini = 0.199<br/>samples = 297<br/>value = [31, 2, 264]<br/>class = Não Exposição>, fillcolor="#8139e5df"] ;
272 -> 280 ;
281 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.158<br/>samples = 127<br/>value = [11, 0, 116]<br/>class = Não Exposição>, fillcolor="#8139e5e7"] ;
280 -> 281 ;
282 [label=<gini = 0.174<br/>samples = 104<br/>value = [10, 0, 94]<br/>class = Não Exposição>, fillcolor="#8139e5e4"] ;
281 -> 282 ;
283 [label=<gini = 0.083<br/>samples = 23<br/>value = [1, 0, 22]<br/>class = Não Exposição>, fillcolor="#8139e5f3"] ;
281 -> 283 ;
284 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.228<br/>samples = 170<br/>value = [20, 2, 148]<br/>class = Não Exposição>, fillcolor="#8139e5da"] ;
280 -> 284 ;
285 [label=<gini = 0.219<br/>samples = 146<br/>value = [16, 2, 128]<br/>class = Não Exposição>, fillcolor="#8139e5dc"] ;
284 -> 285 ;
286 [label=<gini = 0.278<br/>samples = 24<br/>value = [4, 0, 20]<br/>class = Não Exposição>, fillcolor="#8139e5cc"] ;
284 -> 286 ;
287 [label=<local_atendimento ≤ 1.5<br/>gini = 0.265<br/>samples = 618<br/>value = [97, 0, 521]<br/>class = Não Exposição>, fillcolor="#8139e5d0"] ;
271 -> 287 ;
288 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.31<br/>samples = 125<br/>value = [24, 0, 101]<br/>class = Não Exposição>, fillcolor="#8139e5c2"] ;
287 -> 288 ;
289 [label=<sexo ≤ 0.5<br/>gini = 0.381<br/>samples = 78<br/>value = [20, 0, 58]<br/>class = Não Exposição>, fillcolor="#8139e5a7"] ;
288 -> 289 ;
290 [label=<gini = 0.426<br/>samples = 39<br/>value = [12, 0, 27]<br/>class = Não Exposição>, fillcolor="#8139e58e"] ;
289 -> 290 ;
291 [label=<gini = 0.326<br/>samples = 39<br/>value = [8, 0, 31]<br/>class = Não Exposição>, fillcolor="#8139e5bd"] ;
289 -> 291 ;
292 [label=<sexo ≤ 0.5<br/>gini = 0.156<br/>samples = 47<br/>value = [4, 0, 43]<br/>class = Não Exposição>, fillcolor="#8139e5e7"] ;
288 -> 292 ;
293 [label=<gini = 0.227<br/>samples = 23<br/>value = [3, 0, 20]<br/>class = Não Exposição>, fillcolor="#8139e5d9"] ;
292 -> 293 ;
294 [label=<gini = 0.08<br/>samples = 24<br/>value = [1, 0, 23]<br/>class = Não Exposição>, fillcolor="#8139e5f4"] ;
292 -> 294 ;
295 [label=<local_atendimento ≤ 2.5<br/>gini = 0.252<br/>samples = 493<br/>value = [73, 0, 420]<br/>class = Não Exposição>, fillcolor="#8139e5d3"] ;
287 -> 295 ;
296 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.185<br/>samples = 97<br/>value = [10, 0, 87]<br/>class = Não Exposição>, fillcolor="#8139e5e2"] ;
295 -> 296 ;
297 [label=<gini = 0.227<br/>samples = 23<br/>value = [3, 0, 20]<br/>class = Não Exposição>, fillcolor="#8139e5d9"] ;
296 -> 297 ;
298 [label=<gini = 0.171<br/>samples = 74<br/>value = [7, 0, 67]<br/>class = Não Exposição>, fillcolor="#8139e5e4"] ;
296 -> 298 ;
299 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.268<br/>samples = 396<br/>value = [63, 0, 333]<br/>class = Não Exposição>, fillcolor="#8139e5cf"] ;
295 -> 299 ;
300 [label=<gini = 0.229<br/>samples = 190<br/>value = [25, 0, 165]<br/>class = Não Exposição>, fillcolor="#8139e5d8"] ;
299 -> 300 ;
301 [label=<gini = 0.301<br/>samples = 206<br/>value = [38, 0, 168]<br/>class = Não Exposição>, fillcolor="#8139e5c5"] ;
299 -> 301 ;
302 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.085<br/>samples = 112<br/>value = [5, 0, 107]<br/>class = Não Exposição>, fillcolor="#8139e5f3"] ;
270 -> 302 ;
303 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.075<br/>samples = 103<br/>value = [4, 0, 99]<br/>class = Não Exposição>, fillcolor="#8139e5f5"] ;
302 -> 303 ;
304 [label=<gini = 0.0<br/>samples = 14<br/>value = [0, 0, 14]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
303 -> 304 ;
305 [label=<sexo ≤ 0.5<br/>gini = 0.086<br/>samples = 89<br/>value = [4, 0, 85]<br/>class = Não Exposição>, fillcolor="#8139e5f3"] ;
303 -> 305 ;
306 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.062<br/>samples = 62<br/>value = [2, 0, 60]<br/>class = Não Exposição>, fillcolor="#8139e5f6"] ;
305 -> 306 ;
307 [label=<gini = 0.074<br/>samples = 26<br/>value = [1, 0, 25]<br/>class = Não Exposição>, fillcolor="#8139e5f5"] ;
306 -> 307 ;
308 [label=<gini = 0.054<br/>samples = 36<br/>value = [1, 0, 35]<br/>class = Não Exposição>, fillcolor="#8139e5f8"] ;
306 -> 308 ;
309 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.137<br/>samples = 27<br/>value = [2, 0, 25]<br/>class = Não Exposição>, fillcolor="#8139e5eb"] ;
305 -> 309 ;
310 [label=<gini = 0.0<br/>samples = 5<br/>value = [0, 0, 5]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
309 -> 310 ;
311 [label=<gini = 0.165<br/>samples = 22<br/>value = [2, 0, 20]<br/>class = Não Exposição>, fillcolor="#8139e5e6"] ;
309 -> 311 ;
312 [label=<sexo ≤ 0.5<br/>gini = 0.198<br/>samples = 9<br/>value = [1, 0, 8]<br/>class = Não Exposição>, fillcolor="#8139e5df"] ;
302 -> 312 ;
313 [label=<gini = 0.375<br/>samples = 4<br/>value = [1, 0, 3]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
312 -> 313 ;
314 [label=<gini = 0.0<br/>samples = 5<br/>value = [0, 0, 5]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
312 -> 314 ;
315 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.354<br/>samples = 106<br/>value = [23, 1, 82]<br/>class = Não Exposição>, fillcolor="#8139e5b5"] ;
269 -> 315 ;
316 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.385<br/>samples = 94<br/>value = [23, 1, 70]<br/>class = Não Exposição>, fillcolor="#8139e5a9"] ;
315 -> 316 ;
317 [label=<sexo ≤ 0.5<br/>gini = 0.245<br/>samples = 21<br/>value = [3, 0, 18]<br/>class = Não Exposição>, fillcolor="#8139e5d4"] ;
316 -> 317 ;
318 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.142<br/>samples = 13<br/>value = [1, 0, 12]<br/>class = Não Exposição>, fillcolor="#8139e5ea"] ;
317 -> 318 ;
319 [label=<gini = 0.0<br/>samples = 3<br/>value = [0, 0, 3]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
318 -> 319 ;
320 [label=<gini = 0.18<br/>samples = 10<br/>value = [1, 0, 9]<br/>class = Não Exposição>, fillcolor="#8139e5e3"] ;
318 -> 320 ;
321 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.375<br/>samples = 8<br/>value = [2, 0, 6]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
317 -> 321 ;
322 [label=<gini = 0.375<br/>samples = 4<br/>value = [1, 0, 3]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
321 -> 322 ;
323 [label=<gini = 0.375<br/>samples = 4<br/>value = [1, 0, 3]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
321 -> 323 ;
324 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.417<br/>samples = 73<br/>value = [20, 1, 52]<br/>class = Não Exposição>, fillcolor="#8139e59a"] ;
316 -> 324 ;
325 [label=<sexo ≤ 0.5<br/>gini = 0.401<br/>samples = 27<br/>value = [6, 1, 20]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
324 -> 325 ;
326 [label=<gini = 0.375<br/>samples = 16<br/>value = [4, 0, 12]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
325 -> 326 ;
327 [label=<gini = 0.43<br/>samples = 11<br/>value = [2, 1, 8]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
325 -> 327 ;
328 [label=<sexo ≤ 0.5<br/>gini = 0.423<br/>samples = 46<br/>value = [14, 0, 32]<br/>class = Não Exposição>, fillcolor="#8139e58f"] ;
324 -> 328 ;
329 [label=<gini = 0.444<br/>samples = 21<br/>value = [7, 0, 14]<br/>class = Não Exposição>, fillcolor="#8139e57f"] ;
328 -> 329 ;
330 [label=<gini = 0.403<br/>samples = 25<br/>value = [7, 0, 18]<br/>class = Não Exposição>, fillcolor="#8139e59c"] ;
328 -> 330 ;
331 [label=<gini = 0.0<br/>samples = 12<br/>value = [0, 0, 12]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
315 -> 331 ;
332 [label=<local_atendimento ≤ 0.5<br/>gini = 0.337<br/>samples = 3657<br/>value = [783, 2, 2872]<br/>class = Não Exposição>, fillcolor="#8139e5b9"] ;
268 -> 332 ;
333 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.362<br/>samples = 2260<br/>value = [534, 2, 1724]<br/>class = Não Exposição>, fillcolor="#8139e5b0"] ;
332 -> 333 ;
334 [label=<mesoregiao ≤ 4.5<br/>gini = 0.305<br/>samples = 404<br/>value = [76, 0, 328]<br/>class = Não Exposição>, fillcolor="#8139e5c4"] ;
333 -> 334 ;
335 [label=<mesoregiao ≤ 2.5<br/>gini = 0.316<br/>samples = 377<br/>value = [74, 0, 303]<br/>class = Não Exposição>, fillcolor="#8139e5c1"] ;
334 -> 335 ;
336 [label=<mesoregiao ≤ 1.5<br/>gini = 0.293<br/>samples = 247<br/>value = [44, 0, 203]<br/>class = Não Exposição>, fillcolor="#8139e5c8"] ;
335 -> 336 ;
337 [label=<sexo ≤ 0.5<br/>gini = 0.32<br/>samples = 125<br/>value = [25, 0, 100]<br/>class = Não Exposição>, fillcolor="#8139e5bf"] ;
336 -> 337 ;
338 [label=<gini = 0.352<br/>samples = 57<br/>value = [13, 0, 44]<br/>class = Não Exposição>, fillcolor="#8139e5b4"] ;
337 -> 338 ;
339 [label=<gini = 0.291<br/>samples = 68<br/>value = [12, 0, 56]<br/>class = Não Exposição>, fillcolor="#8139e5c8"] ;
337 -> 339 ;
340 [label=<sexo ≤ 0.5<br/>gini = 0.263<br/>samples = 122<br/>value = [19, 0, 103]<br/>class = Não Exposição>, fillcolor="#8139e5d0"] ;
336 -> 340 ;
341 [label=<gini = 0.273<br/>samples = 49<br/>value = [8, 0, 41]<br/>class = Não Exposição>, fillcolor="#8139e5cd"] ;
340 -> 341 ;
342 [label=<gini = 0.256<br/>samples = 73<br/>value = [11, 0, 62]<br/>class = Não Exposição>, fillcolor="#8139e5d2"] ;
340 -> 342 ;
343 [label=<sexo ≤ 0.5<br/>gini = 0.355<br/>samples = 130<br/>value = [30, 0, 100]<br/>class = Não Exposição>, fillcolor="#8139e5b3"] ;
335 -> 343 ;
344 [label=<mesoregiao ≤ 3.5<br/>gini = 0.375<br/>samples = 60<br/>value = [15, 0, 45]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
343 -> 344 ;
345 [label=<gini = 0.457<br/>samples = 17<br/>value = [6, 0, 11]<br/>class = Não Exposição>, fillcolor="#8139e574"] ;
344 -> 345 ;
346 [label=<gini = 0.331<br/>samples = 43<br/>value = [9, 0, 34]<br/>class = Não Exposição>, fillcolor="#8139e5bb"] ;
344 -> 346 ;
347 [label=<mesoregiao ≤ 3.5<br/>gini = 0.337<br/>samples = 70<br/>value = [15, 0, 55]<br/>class = Não Exposição>, fillcolor="#8139e5b9"] ;
343 -> 347 ;
348 [label=<gini = 0.312<br/>samples = 31<br/>value = [6, 0, 25]<br/>class = Não Exposição>, fillcolor="#8139e5c2"] ;
347 -> 348 ;
349 [label=<gini = 0.355<br/>samples = 39<br/>value = [9, 0, 30]<br/>class = Não Exposição>, fillcolor="#8139e5b3"] ;
347 -> 349 ;
350 [label=<sexo ≤ 0.5<br/>gini = 0.137<br/>samples = 27<br/>value = [2, 0, 25]<br/>class = Não Exposição>, fillcolor="#8139e5eb"] ;
334 -> 350 ;
351 [label=<gini = 0.0<br/>samples = 18<br/>value = [0, 0, 18]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
350 -> 351 ;
352 [label=<gini = 0.346<br/>samples = 9<br/>value = [2, 0, 7]<br/>class = Não Exposição>, fillcolor="#8139e5b6"] ;
350 -> 352 ;
353 [label=<sexo ≤ 0.5<br/>gini = 0.373<br/>samples = 1856<br/>value = [458, 2, 1396]<br/>class = Não Exposição>, fillcolor="#8139e5ab"] ;
333 -> 353 ;
354 [label=<mesoregiao ≤ 4.5<br/>gini = 0.34<br/>samples = 865<br/>value = [188, 0, 677]<br/>class = Não Exposição>, fillcolor="#8139e5b8"] ;
353 -> 354 ;
355 [label=<mesoregiao ≤ 2.5<br/>gini = 0.346<br/>samples = 778<br/>value = [173, 0, 605]<br/>class = Não Exposição>, fillcolor="#8139e5b6"] ;
354 -> 355 ;
356 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.325<br/>samples = 489<br/>value = [100, 0, 389]<br/>class = Não Exposição>, fillcolor="#8139e5bd"] ;
355 -> 356 ;
357 [label=<gini = 0.307<br/>samples = 222<br/>value = [42, 0, 180]<br/>class = Não Exposição>, fillcolor="#8139e5c4"] ;
356 -> 357 ;
358 [label=<gini = 0.34<br/>samples = 267<br/>value = [58, 0, 209]<br/>class = Não Exposição>, fillcolor="#8139e5b8"] ;
356 -> 358 ;
359 [label=<mesoregiao ≤ 3.5<br/>gini = 0.378<br/>samples = 289<br/>value = [73, 0, 216]<br/>class = Não Exposição>, fillcolor="#8139e5a9"] ;
355 -> 359 ;
360 [label=<gini = 0.421<br/>samples = 113<br/>value = [34, 0, 79]<br/>class = Não Exposição>, fillcolor="#8139e591"] ;
359 -> 360 ;
361 [label=<gini = 0.345<br/>samples = 176<br/>value = [39, 0, 137]<br/>class = Não Exposição>, fillcolor="#8139e5b6"] ;
359 -> 361 ;
362 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.285<br/>samples = 87<br/>value = [15, 0, 72]<br/>class = Não Exposição>, fillcolor="#8139e5ca"] ;
354 -> 362 ;
363 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.273<br/>samples = 86<br/>value = [14, 0, 72]<br/>class = Não Exposição>, fillcolor="#8139e5cd"] ;
362 -> 363 ;
364 [label=<gini = 0.408<br/>samples = 21<br/>value = [6, 0, 15]<br/>class = Não Exposição>, fillcolor="#8139e599"] ;
363 -> 364 ;
365 [label=<gini = 0.216<br/>samples = 65<br/>value = [8, 0, 57]<br/>class = Não Exposição>, fillcolor="#8139e5db"] ;
363 -> 365 ;
366 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
362 -> 366 ;
367 [label=<mesoregiao ≤ 3.5<br/>gini = 0.399<br/>samples = 991<br/>value = [270, 2, 719]<br/>class = Não Exposição>, fillcolor="#8139e59f"] ;
353 -> 367 ;
368 [label=<mesoregiao ≤ 2.5<br/>gini = 0.389<br/>samples = 684<br/>value = [179, 1, 504]<br/>class = Não Exposição>, fillcolor="#8139e5a4"] ;
367 -> 368 ;
369 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.395<br/>samples = 526<br/>value = [141, 1, 384]<br/>class = Não Exposição>, fillcolor="#8139e5a1"] ;
368 -> 369 ;
370 [label=<gini = 0.387<br/>samples = 263<br/>value = [69, 0, 194]<br/>class = Não Exposição>, fillcolor="#8139e5a4"] ;
369 -> 370 ;
371 [label=<gini = 0.403<br/>samples = 263<br/>value = [72, 1, 190]<br/>class = Não Exposição>, fillcolor="#8139e59e"] ;
369 -> 371 ;
372 [label=<classificacao_idade ≤ 1.5<br/>gini = 0.365<br/>samples = 158<br/>value = [38, 0, 120]<br/>class = Não Exposição>, fillcolor="#8139e5ae"] ;
368 -> 372 ;
373 [label=<gini = 0.427<br/>samples = 42<br/>value = [13, 0, 29]<br/>class = Não Exposição>, fillcolor="#8139e58d"] ;
372 -> 373 ;
374 [label=<gini = 0.338<br/>samples = 116<br/>value = [25, 0, 91]<br/>class = Não Exposição>, fillcolor="#8139e5b9"] ;
372 -> 374 ;
375 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.422<br/>samples = 307<br/>value = [91, 1, 215]<br/>class = Não Exposição>, fillcolor="#8139e592"] ;
367 -> 375 ;
376 [label=<mesoregiao ≤ 4.5<br/>gini = 0.378<br/>samples = 154<br/>value = [39, 0, 115]<br/>class = Não Exposição>, fillcolor="#8139e5a9"] ;
375 -> 376 ;
377 [label=<gini = 0.418<br/>samples = 104<br/>value = [31, 0, 73]<br/>class = Não Exposição>, fillcolor="#8139e593"] ;
376 -> 377 ;
378 [label=<gini = 0.269<br/>samples = 50<br/>value = [8, 0, 42]<br/>class = Não Exposição>, fillcolor="#8139e5ce"] ;
376 -> 378 ;
379 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.457<br/>samples = 153<br/>value = [52, 1, 100]<br/>class = Não Exposição>, fillcolor="#8139e579"] ;
375 -> 379 ;
380 [label=<gini = 0.446<br/>samples = 125<br/>value = [40, 1, 84]<br/>class = Não Exposição>, fillcolor="#8139e584"] ;
379 -> 380 ;
381 [label=<gini = 0.49<br/>samples = 28<br/>value = [12, 0, 16]<br/>class = Não Exposição>, fillcolor="#8139e540"] ;
379 -> 381 ;
382 [label=<local_atendimento ≤ 1.5<br/>gini = 0.293<br/>samples = 1397<br/>value = [249, 0, 1148]<br/>class = Não Exposição>, fillcolor="#8139e5c8"] ;
332 -> 382 ;
383 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.318<br/>samples = 641<br/>value = [127, 0, 514]<br/>class = Não Exposição>, fillcolor="#8139e5c0"] ;
382 -> 383 ;
384 [label=<mesoregiao ≤ 3.5<br/>gini = 0.338<br/>samples = 329<br/>value = [71, 0, 258]<br/>class = Não Exposição>, fillcolor="#8139e5b9"] ;
383 -> 384 ;
385 [label=<mesoregiao ≤ 2.5<br/>gini = 0.364<br/>samples = 247<br/>value = [59, 0, 188]<br/>class = Não Exposição>, fillcolor="#8139e5af"] ;
384 -> 385 ;
386 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.349<br/>samples = 200<br/>value = [45, 0, 155]<br/>class = Não Exposição>, fillcolor="#8139e5b5"] ;
385 -> 386 ;
387 [label=<gini = 0.237<br/>samples = 51<br/>value = [7, 0, 44]<br/>class = Não Exposição>, fillcolor="#8139e5d6"] ;
386 -> 387 ;
388 [label=<gini = 0.38<br/>samples = 149<br/>value = [38, 0, 111]<br/>class = Não Exposição>, fillcolor="#8139e5a8"] ;
386 -> 388 ;
389 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.418<br/>samples = 47<br/>value = [14, 0, 33]<br/>class = Não Exposição>, fillcolor="#8139e593"] ;
385 -> 389 ;
390 [label=<gini = 0.5<br/>samples = 10<br/>value = [5, 0, 5]<br/>class = Favorável>, fillcolor="#e5813900"] ;
389 -> 390 ;
391 [label=<gini = 0.368<br/>samples = 37<br/>value = [9, 0, 28]<br/>class = Não Exposição>, fillcolor="#8139e5ad"] ;
389 -> 391 ;
392 [label=<sexo ≤ 0.5<br/>gini = 0.25<br/>samples = 82<br/>value = [12, 0, 70]<br/>class = Não Exposição>, fillcolor="#8139e5d3"] ;
384 -> 392 ;
393 [label=<mesoregiao ≤ 4.5<br/>gini = 0.34<br/>samples = 46<br/>value = [10, 0, 36]<br/>class = Não Exposição>, fillcolor="#8139e5b8"] ;
392 -> 393 ;
394 [label=<gini = 0.375<br/>samples = 28<br/>value = [7, 0, 21]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
393 -> 394 ;
395 [label=<gini = 0.278<br/>samples = 18<br/>value = [3, 0, 15]<br/>class = Não Exposição>, fillcolor="#8139e5cc"] ;
393 -> 395 ;
396 [label=<mesoregiao ≤ 4.5<br/>gini = 0.105<br/>samples = 36<br/>value = [2, 0, 34]<br/>class = Não Exposição>, fillcolor="#8139e5f0"] ;
392 -> 396 ;
397 [label=<gini = 0.159<br/>samples = 23<br/>value = [2, 0, 21]<br/>class = Não Exposição>, fillcolor="#8139e5e7"] ;
396 -> 397 ;
398 [label=<gini = 0.0<br/>samples = 13<br/>value = [0, 0, 13]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
396 -> 398 ;
399 [label=<sexo ≤ 0.5<br/>gini = 0.295<br/>samples = 312<br/>value = [56, 0, 256]<br/>class = Não Exposição>, fillcolor="#8139e5c7"] ;
383 -> 399 ;
400 [label=<mesoregiao ≤ 1.5<br/>gini = 0.26<br/>samples = 150<br/>value = [23, 0, 127]<br/>class = Não Exposição>, fillcolor="#8139e5d1"] ;
399 -> 400 ;
401 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.219<br/>samples = 32<br/>value = [4, 0, 28]<br/>class = Não Exposição>, fillcolor="#8139e5db"] ;
400 -> 401 ;
402 [label=<gini = 0.245<br/>samples = 28<br/>value = [4, 0, 24]<br/>class = Não Exposição>, fillcolor="#8139e5d4"] ;
401 -> 402 ;
403 [label=<gini = 0.0<br/>samples = 4<br/>value = [0, 0, 4]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
401 -> 403 ;
404 [label=<mesoregiao ≤ 4.5<br/>gini = 0.27<br/>samples = 118<br/>value = [19, 0, 99]<br/>class = Não Exposição>, fillcolor="#8139e5ce"] ;
400 -> 404 ;
405 [label=<gini = 0.265<br/>samples = 108<br/>value = [17, 0, 91]<br/>class = Não Exposição>, fillcolor="#8139e5cf"] ;
404 -> 405 ;
406 [label=<gini = 0.32<br/>samples = 10<br/>value = [2, 0, 8]<br/>class = Não Exposição>, fillcolor="#8139e5bf"] ;
404 -> 406 ;
407 [label=<mesoregiao ≤ 4.5<br/>gini = 0.324<br/>samples = 162<br/>value = [33, 0, 129]<br/>class = Não Exposição>, fillcolor="#8139e5be"] ;
399 -> 407 ;
408 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.315<br/>samples = 148<br/>value = [29, 0, 119]<br/>class = Não Exposição>, fillcolor="#8139e5c1"] ;
407 -> 408 ;
409 [label=<gini = 0.335<br/>samples = 113<br/>value = [24, 0, 89]<br/>class = Não Exposição>, fillcolor="#8139e5ba"] ;
408 -> 409 ;
410 [label=<gini = 0.245<br/>samples = 35<br/>value = [5, 0, 30]<br/>class = Não Exposição>, fillcolor="#8139e5d4"] ;
408 -> 410 ;
411 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.408<br/>samples = 14<br/>value = [4, 0, 10]<br/>class = Não Exposição>, fillcolor="#8139e599"] ;
407 -> 411 ;
412 [label=<gini = 0.32<br/>samples = 10<br/>value = [2, 0, 8]<br/>class = Não Exposição>, fillcolor="#8139e5bf"] ;
411 -> 412 ;
413 [label=<gini = 0.5<br/>samples = 4<br/>value = [2, 0, 2]<br/>class = Favorável>, fillcolor="#e5813900"] ;
411 -> 413 ;
414 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.271<br/>samples = 756<br/>value = [122, 0, 634]<br/>class = Não Exposição>, fillcolor="#8139e5ce"] ;
382 -> 414 ;
415 [label=<local_atendimento ≤ 2.5<br/>gini = 0.195<br/>samples = 82<br/>value = [9, 0, 73]<br/>class = Não Exposição>, fillcolor="#8139e5e0"] ;
414 -> 415 ;
416 [label=<sexo ≤ 0.5<br/>gini = 0.039<br/>samples = 50<br/>value = [1, 0, 49]<br/>class = Não Exposição>, fillcolor="#8139e5fa"] ;
415 -> 416 ;
417 [label=<mesoregiao ≤ 2.5<br/>gini = 0.08<br/>samples = 24<br/>value = [1, 0, 23]<br/>class = Não Exposição>, fillcolor="#8139e5f4"] ;
416 -> 417 ;
418 [label=<gini = 0.133<br/>samples = 14<br/>value = [1, 0, 13]<br/>class = Não Exposição>, fillcolor="#8139e5eb"] ;
417 -> 418 ;
419 [label=<gini = 0.0<br/>samples = 10<br/>value = [0, 0, 10]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
417 -> 419 ;
420 [label=<gini = 0.0<br/>samples = 26<br/>value = [0, 0, 26]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
416 -> 420 ;
421 [label=<local_atendimento ≤ 4.5<br/>gini = 0.375<br/>samples = 32<br/>value = [8, 0, 24]<br/>class = Não Exposição>, fillcolor="#8139e5aa"] ;
415 -> 421 ;
422 [label=<sexo ≤ 0.5<br/>gini = 0.298<br/>samples = 22<br/>value = [4, 0, 18]<br/>class = Não Exposição>, fillcolor="#8139e5c6"] ;
421 -> 422 ;
423 [label=<gini = 0.463<br/>samples = 11<br/>value = [4, 0, 7]<br/>class = Não Exposição>, fillcolor="#8139e56d"] ;
422 -> 423 ;
424 [label=<gini = 0.0<br/>samples = 11<br/>value = [0, 0, 11]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
422 -> 424 ;
425 [label=<mesoregiao ≤ 1.5<br/>gini = 0.48<br/>samples = 10<br/>value = [4, 0, 6]<br/>class = Não Exposição>, fillcolor="#8139e555"] ;
421 -> 425 ;
426 [label=<gini = 0.0<br/>samples = 5<br/>value = [0, 0, 5]<br/>class = Não Exposição>, fillcolor="#8139e5ff"] ;
425 -> 426 ;
427 [label=<gini = 0.32<br/>samples = 5<br/>value = [4, 0, 1]<br/>class = Favorável>, fillcolor="#e58139bf"] ;
425 -> 427 ;
428 [label=<local_atendimento ≤ 4.5<br/>gini = 0.279<br/>samples = 674<br/>value = [113, 0, 561]<br/>class = Não Exposição>, fillcolor="#8139e5cc"] ;
414 -> 428 ;
429 [label=<local_atendimento ≤ 2.5<br/>gini = 0.297<br/>samples = 567<br/>value = [103, 0, 464]<br/>class = Não Exposição>, fillcolor="#8139e5c6"] ;
428 -> 429 ;
430 [label=<mesoregiao ≤ 3.5<br/>gini = 0.278<br/>samples = 401<br/>value = [67, 0, 334]<br/>class = Não Exposição>, fillcolor="#8139e5cc"] ;
429 -> 430 ;
431 [label=<gini = 0.303<br/>samples = 296<br/>value = [55, 0, 241]<br/>class = Não Exposição>, fillcolor="#8139e5c5"] ;
430 -> 431 ;
432 [label=<gini = 0.202<br/>samples = 105<br/>value = [12, 0, 93]<br/>class = Não Exposição>, fillcolor="#8139e5de"] ;
430 -> 432 ;
433 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.34<br/>samples = 166<br/>value = [36, 0, 130]<br/>class = Não Exposição>, fillcolor="#8139e5b8"] ;
429 -> 433 ;
434 [label=<gini = 0.356<br/>samples = 151<br/>value = [35, 0, 116]<br/>class = Não Exposição>, fillcolor="#8139e5b2"] ;
433 -> 434 ;
435 [label=<gini = 0.124<br/>samples = 15<br/>value = [1, 0, 14]<br/>class = Não Exposição>, fillcolor="#8139e5ed"] ;
433 -> 435 ;
436 [label=<mesoregiao ≤ 3.5<br/>gini = 0.169<br/>samples = 107<br/>value = [10, 0, 97]<br/>class = Não Exposição>, fillcolor="#8139e5e5"] ;
428 -> 436 ;
437 [label=<sexo ≤ 0.5<br/>gini = 0.097<br/>samples = 78<br/>value = [4, 0, 74]<br/>class = Não Exposição>, fillcolor="#8139e5f1"] ;
436 -> 437 ;
438 [label=<gini = 0.04<br/>samples = 49<br/>value = [1, 0, 48]<br/>class = Não Exposição>, fillcolor="#8139e5fa"] ;
437 -> 438 ;
439 [label=<gini = 0.185<br/>samples = 29<br/>value = [3, 0, 26]<br/>class = Não Exposição>, fillcolor="#8139e5e2"] ;
437 -> 439 ;
440 [label=<sexo ≤ 0.5<br/>gini = 0.328<br/>samples = 29<br/>value = [6, 0, 23]<br/>class = Não Exposição>, fillcolor="#8139e5bc"] ;
436 -> 440 ;
441 [label=<gini = 0.408<br/>samples = 14<br/>value = [4, 0, 10]<br/>class = Não Exposição>, fillcolor="#8139e599"] ;
440 -> 441 ;
442 [label=<gini = 0.231<br/>samples = 15<br/>value = [2, 0, 13]<br/>class = Não Exposição>, fillcolor="#8139e5d8"] ;
440 -> 442 ;
443 [label=<grupo_agente ≤ 6.5<br/>gini = 0.098<br/>samples = 6879<br/>value = [6525, 73, 281]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
267 -> 443 ;
444 [label=<grupo_agente ≤ 4.5<br/>gini = 0.07<br/>samples = 4424<br/>value = [4264, 64, 96]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
443 -> 444 ;
445 [label=<grupo_agente ≤ 3.5<br/>gini = 0.1<br/>samples = 2045<br/>value = [1939, 40, 66]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
444 -> 445 ;
446 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.096<br/>samples = 1232<br/>value = [1170, 8, 54]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
445 -> 446 ;
447 [label=<sexo ≤ 0.5<br/>gini = 0.085<br/>samples = 1130<br/>value = [1080, 7, 43]<br/>class = Favorável>, fillcolor="#e58139f3"] ;
446 -> 447 ;
448 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.052<br/>samples = 448<br/>value = [436, 2, 10]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
447 -> 448 ;
449 [label=<local_atendimento ≤ 4.5<br/>gini = 0.12<br/>samples = 47<br/>value = [44, 0, 3]<br/>class = Favorável>, fillcolor="#e58139ee"] ;
448 -> 449 ;
450 [label=<gini = 0.085<br/>samples = 45<br/>value = [43, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f3"] ;
449 -> 450 ;
451 [label=<gini = 0.5<br/>samples = 2<br/>value = [1, 0, 1]<br/>class = Favorável>, fillcolor="#e5813900"] ;
449 -> 451 ;
452 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.044<br/>samples = 401<br/>value = [392, 2, 7]<br/>class = Favorável>, fillcolor="#e58139f9"] ;
448 -> 452 ;
453 [label=<gini = 0.0<br/>samples = 154<br/>value = [154, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
452 -> 453 ;
454 [label=<gini = 0.071<br/>samples = 247<br/>value = [238, 2, 7]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
452 -> 454 ;
455 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.106<br/>samples = 682<br/>value = [644, 5, 33]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
447 -> 455 ;
456 [label=<mesoregiao ≤ 3.5<br/>gini = 0.078<br/>samples = 319<br/>value = [306, 1, 12]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
455 -> 456 ;
457 [label=<gini = 0.093<br/>samples = 267<br/>value = [254, 1, 12]<br/>class = Favorável>, fillcolor="#e58139f2"] ;
456 -> 457 ;
458 [label=<gini = 0.0<br/>samples = 52<br/>value = [52, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
456 -> 458 ;
459 [label=<local_atendimento ≤ 0.5<br/>gini = 0.13<br/>samples = 363<br/>value = [338, 4, 21]<br/>class = Favorável>, fillcolor="#e58139ec"] ;
455 -> 459 ;
460 [label=<gini = 0.154<br/>samples = 241<br/>value = [221, 4, 16]<br/>class = Favorável>, fillcolor="#e58139e8"] ;
459 -> 460 ;
461 [label=<gini = 0.079<br/>samples = 122<br/>value = [117, 0, 5]<br/>class = Favorável>, fillcolor="#e58139f4"] ;
459 -> 461 ;
462 [label=<local_atendimento ≤ 1.5<br/>gini = 0.21<br/>samples = 102<br/>value = [90, 1, 11]<br/>class = Favorável>, fillcolor="#e58139dd"] ;
446 -> 462 ;
463 [label=<mesoregiao ≤ 2.5<br/>gini = 0.158<br/>samples = 82<br/>value = [75, 1, 6]<br/>class = Favorável>, fillcolor="#e58139e8"] ;
462 -> 463 ;
464 [label=<local_atendimento ≤ 0.5<br/>gini = 0.073<br/>samples = 53<br/>value = [51, 0, 2]<br/>class = Favorável>, fillcolor="#e58139f5"] ;
463 -> 464 ;
465 [label=<gini = 0.049<br/>samples = 40<br/>value = [39, 0, 1]<br/>class = Favorável>, fillcolor="#e58139f8"] ;
464 -> 465 ;
466 [label=<gini = 0.142<br/>samples = 13<br/>value = [12, 0, 1]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
464 -> 466 ;
467 [label=<mesoregiao ≤ 3.5<br/>gini = 0.295<br/>samples = 29<br/>value = [24, 1, 4]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
463 -> 467 ;
468 [label=<gini = 0.46<br/>samples = 10<br/>value = [7, 1, 2]<br/>class = Favorável>, fillcolor="#e581399f"] ;
467 -> 468 ;
469 [label=<gini = 0.188<br/>samples = 19<br/>value = [17, 0, 2]<br/>class = Favorável>, fillcolor="#e58139e1"] ;
467 -> 469 ;
470 [label=<local_atendimento ≤ 4.5<br/>gini = 0.375<br/>samples = 20<br/>value = [15, 0, 5]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
462 -> 470 ;
471 [label=<mesoregiao ≤ 0.5<br/>gini = 0.415<br/>samples = 17<br/>value = [12, 0, 5]<br/>class = Favorável>, fillcolor="#e5813995"] ;
470 -> 471 ;
472 [label=<gini = 0.494<br/>samples = 9<br/>value = [5, 0, 4]<br/>class = Favorável>, fillcolor="#e5813933"] ;
471 -> 472 ;
473 [label=<gini = 0.219<br/>samples = 8<br/>value = [7, 0, 1]<br/>class = Favorável>, fillcolor="#e58139db"] ;
471 -> 473 ;
474 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
470 -> 474 ;
475 [label=<mesoregiao ≤ 0.5<br/>gini = 0.104<br/>samples = 813<br/>value = [769, 32, 12]<br/>class = Favorável>, fillcolor="#e58139f1"] ;
445 -> 475 ;
476 [label=<classificacao_idade ≤ 0.5<br/>gini = 0.149<br/>samples = 340<br/>value = [313, 19, 8]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
475 -> 476 ;
477 [label=<sexo ≤ 0.5<br/>gini = 0.245<br/>samples = 14<br/>value = [12, 0, 2]<br/>class = Favorável>, fillcolor="#e58139d4"] ;
476 -> 477 ;
478 [label=<gini = 0.0<br/>samples = 6<br/>value = [6, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
477 -> 478 ;
479 [label=<local_atendimento ≤ 1.5<br/>gini = 0.375<br/>samples = 8<br/>value = [6, 0, 2]<br/>class = Favorável>, fillcolor="#e58139aa"] ;
477 -> 479 ;
480 [label=<gini = 0.408<br/>samples = 7<br/>value = [5, 0, 2]<br/>class = Favorável>, fillcolor="#e5813999"] ;
479 -> 480 ;
481 [label=<gini = 0.0<br/>samples = 1<br/>value = [1, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
479 -> 481 ;
482 [label=<sexo ≤ 0.5<br/>gini = 0.144<br/>samples = 326<br/>value = [301, 19, 6]<br/>class = Favorável>, fillcolor="#e58139ea"] ;
476 -> 482 ;
483 [label=<local_atendimento ≤ 0.5<br/>gini = 0.141<br/>samples = 134<br/>value = [124, 4, 6]<br/>class = Favorável>, fillcolor="#e58139eb"] ;
482 -> 483 ;
484 [label=<gini = 0.15<br/>samples = 100<br/>value = [92, 2, 6]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
483 -> 484 ;
485 [label=<gini = 0.111<br/>samples = 34<br/>value = [32, 2, 0]<br/>class = Favorável>, fillcolor="#e58139ef"] ;
483 -> 485 ;
486 [label=<classificacao_idade ≤ 3.5<br/>gini = 0.144<br/>samples = 192<br/>value = [177, 15, 0]<br/>class = Favorável>, fillcolor="#e58139e9"] ;
482 -> 486 ;
487 [label=<gini = 0.137<br/>samples = 189<br/>value = [175, 14, 0]<br/>class = Favorável>, fillcolor="#e58139eb"] ;
486 -> 487 ;
488 [label=<gini = 0.444<br/>samples = 3<br/>value = [2, 1, 0]<br/>class = Favorável>, fillcolor="#e581397f"] ;
486 -> 488 ;
489 [label=<classificacao_idade ≤ 2.5<br/>gini = 0.07<br/>samples = 473<br/>value = [456, 13, 4]<br/>class = Favorável>, fillcolor="#e58139f6"] ;
475 -> 489 ;
490 [label=<local_atendimento ≤ 1.5<br/>gini = 0.11<br/>samples = 244<br/>value = [230, 10, 4]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
489 -> 490 ;
491 [label=<local_atendimento ≤ 0.5<br/>gini = 0.104<br/>samples = 238<br/>value = [225, 10, 3]<br/>class = Favorável>, fillcolor="#e58139f0"] ;
490 -> 491 ;
492 [label=<gini = 0.121<br/>samples = 188<br/>value = [176, 9, 3]<br/>class = Favorável>, fillcolor="#e58139ee"] ;
491 -> 492 ;
493 [label=<gini = 0.039<br/>samples = 50<br/>value = [49, 1, 0]<br/>class = Favorável>, fillcolor="#e58139fa"] ;
491 -> 493 ;
494 [label=<local_atendimento ≤ 2.5<br/>gini = 0.278<br/>samples = 6<br/>value = [5, 0, 1]<br/>class = Favorável>, fillcolor="#e58139cc"] ;
490 -> 494 ;
495 [label=<gini = 0.444<br/>samples = 3<br/>value = [2, 0, 1]<br/>class = Favorável>, fillcolor="#e581397f"] ;
494 -> 495 ;
496 [label=<gini = 0.0<br/>samples = 3<br/>value = [3, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
494 -> 496 ;
497 [label=<sexo ≤ 0.5<br/>gini = 0.026<br/>samples = 229<br/>value = [226, 3, 0]<br/>class = Favorável>, fillcolor="#e58139fc"] ;
489 -> 497 ;
498 [label=<gini = 0.0<br/>samples = 93<br/>value = [93, 0, 0]<br/>class = Favorável>, fillcolor="#e58139ff"] ;
497 -> 498 ;