-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp_xgb_dump.json
2800 lines (2800 loc) · 240 KB
/
wp_xgb_dump.json
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
[
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": -2, "yes": 1, "no": 2, "missing": 1 , "gain": 232808.828, "cover": 169129.75, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -7, "yes": 3, "no": 4, "missing": 3 , "gain": 20698.2578, "cover": 76833.5, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -14, "yes": 7, "no": 8, "missing": 7 , "gain": 2541.60938, "cover": 46085.5, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -18, "yes": 15, "no": 16, "missing": 15 , "gain": 114.953125, "cover": 26226, "children": [
{ "nodeid": 15, "leaf": -0.392301768 , "cover": 19795.75 },
{ "nodeid": 16, "leaf": -0.361034006 , "cover": 6430.25 }
]},
{ "nodeid": 8, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 648, "yes": 17, "no": 18, "missing": 17 , "gain": 471.214844, "cover": 19859.5, "children": [
{ "nodeid": 17, "leaf": -0.359931678 , "cover": 3218.5 },
{ "nodeid": 18, "leaf": -0.276156723 , "cover": 16641 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "pos_score_diff_start", "split_condition": -4, "yes": 9, "no": 10, "missing": 9 , "gain": 1974.82227, "cover": 30748, "children": [
{ "nodeid": 9, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 502, "yes": 19, "no": 20, "missing": 19 , "gain": 217.90625, "cover": 18033.25, "children": [
{ "nodeid": 19, "leaf": -0.245084524 , "cover": 1596 },
{ "nodeid": 20, "leaf": -0.167566508 , "cover": 16437.25 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 21, "no": 22, "missing": 21 , "gain": 269.623657, "cover": 12714.75, "children": [
{ "nodeid": 21, "leaf": -0.114742748 , "cover": 3968.75 },
{ "nodeid": 22, "leaf": -0.0518806465 , "cover": 8746 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 5, "yes": 5, "no": 6, "missing": 5 , "gain": 38300.7891, "cover": 92296.25, "children": [
{ "nodeid": 5, "depth": 2, "split": "pos_score_diff_start", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 3122.08887, "cover": 43195.75, "children": [
{ "nodeid": 11, "depth": 3, "split": "down", "split_condition": 2.5, "yes": 23, "no": 24, "missing": 23 , "gain": 364.330078, "cover": 29878.25, "children": [
{ "nodeid": 23, "leaf": 0.053104341 , "cover": 21251.5 },
{ "nodeid": 24, "leaf": 0.00436962163 , "cover": 8626.75 }
]},
{ "nodeid": 12, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 249, "yes": 25, "no": 26, "missing": 25 , "gain": 600.733398, "cover": 13317.5, "children": [
{ "nodeid": 25, "leaf": 0.312779486 , "cover": 904.75 },
{ "nodeid": 26, "leaf": 0.143977448 , "cover": 12412.75 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 11, "yes": 13, "no": 14, "missing": 13 , "gain": 3601.625, "cover": 49100.5, "children": [
{ "nodeid": 13, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 638, "yes": 27, "no": 28, "missing": 27 , "gain": 536.265625, "cover": 19567.75, "children": [
{ "nodeid": 27, "leaf": 0.344176829 , "cover": 3019.25 },
{ "nodeid": 28, "leaf": 0.252382249 , "cover": 16548.5 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 16, "yes": 29, "no": 30, "missing": 29 , "gain": 347.898438, "cover": 29532.75, "children": [
{ "nodeid": 29, "leaf": 0.34791407 , "cover": 10527.75 },
{ "nodeid": 30, "leaf": 0.393465251 , "cover": 19005 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.000270286924, "yes": 1, "no": 2, "missing": 1 , "gain": 158596.672, "cover": 166100.266, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00381976832, "yes": 3, "no": 4, "missing": 3 , "gain": 19422.2969, "cover": 83979.0078, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -13, "yes": 7, "no": 8, "missing": 7 , "gain": 2228.15625, "cover": 46957.9492, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0106239785, "yes": 15, "no": 16, "missing": 15 , "gain": 473.859375, "cover": 31614.7734, "children": [
{ "nodeid": 15, "leaf": -0.327138722 , "cover": 21800.5449 },
{ "nodeid": 16, "leaf": -0.27408433 , "cover": 9814.22754 }
]},
{ "nodeid": 8, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 17, "no": 18, "missing": 17 , "gain": 351.832031, "cover": 15343.1758, "children": [
{ "nodeid": 17, "leaf": -0.240034148 , "cover": 9962.07715 },
{ "nodeid": 18, "leaf": -0.176465943 , "cover": 5381.09814 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00132080074, "yes": 9, "no": 10, "missing": 9 , "gain": 2264.94189, "cover": 37021.0586, "children": [
{ "nodeid": 9, "depth": 3, "split": "period", "split_condition": 3, "yes": 19, "no": 20, "missing": 19 , "gain": 253.866211, "cover": 18216.9746, "children": [
{ "nodeid": 19, "leaf": -0.149060562 , "cover": 14375.3486 },
{ "nodeid": 20, "leaf": -0.0911368281 , "cover": 3841.62646 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.000239322369, "yes": 21, "no": 22, "missing": 21 , "gain": 217.527649, "cover": 18804.082, "children": [
{ "nodeid": 21, "leaf": -0.0571618155 , "cover": 10435.1914 },
{ "nodeid": 22, "leaf": -0.013876426 , "cover": 8368.88965 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 6, "yes": 5, "no": 6, "missing": 5 , "gain": 17663.4062, "cover": 82121.2578, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00259973598, "yes": 11, "no": 12, "missing": 11 , "gain": 1613.48438, "cover": 35439.3906, "children": [
{ "nodeid": 11, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00071835547, "yes": 23, "no": 24, "missing": 23 , "gain": 379.678955, "cover": 25210.3359, "children": [
{ "nodeid": 23, "leaf": 0.0246755481 , "cover": 7522.68945 },
{ "nodeid": 24, "leaf": 0.0783215761 , "cover": 17687.6465 }
]},
{ "nodeid": 12, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0195367243, "yes": 25, "no": 26, "missing": 25 , "gain": 361.189941, "cover": 10229.0537, "children": [
{ "nodeid": 25, "leaf": 0.141319647 , "cover": 8800.05469 },
{ "nodeid": 26, "leaf": 0.249784902 , "cover": 1428.99902 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00854715426, "yes": 13, "no": 14, "missing": 13 , "gain": 2689.02344, "cover": 46681.8711, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 10, "yes": 27, "no": 28, "missing": 27 , "gain": 505.113281, "cover": 18342.2109, "children": [
{ "nodeid": 27, "leaf": 0.189962819 , "cover": 11010.4512 },
{ "nodeid": 28, "leaf": 0.257793128 , "cover": 7331.76074 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 9, "yes": 29, "no": 30, "missing": 29 , "gain": 249.875, "cover": 28339.6602, "children": [
{ "nodeid": 29, "leaf": 0.261481196 , "cover": 3093.0105 },
{ "nodeid": 30, "leaf": 0.321999669 , "cover": 25246.6484 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 9.71026602e-05, "yes": 1, "no": 2, "missing": 1 , "gain": 107207.594, "cover": 159774.719, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -9, "yes": 3, "no": 4, "missing": 3 , "gain": 12891.2227, "cover": 76757.4844, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00859615952, "yes": 7, "no": 8, "missing": 7 , "gain": 1551.27734, "cover": 39683.1328, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0142739136, "yes": 15, "no": 16, "missing": 15 , "gain": 160.109375, "cover": 25791.3086, "children": [
{ "nodeid": 15, "leaf": -0.290198445 , "cover": 18409.5996 },
{ "nodeid": 16, "leaf": -0.255123675 , "cover": 7381.70752 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 341.766602, "cover": 13891.8262, "children": [
{ "nodeid": 17, "leaf": -0.221312076 , "cover": 8745.63281 },
{ "nodeid": 18, "leaf": -0.156266689 , "cover": 5146.19385 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 2752.97217, "cover": 37074.3477, "children": [
{ "nodeid": 9, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00172154349, "yes": 19, "no": 20, "missing": 19 , "gain": 546.439453, "cover": 20536.6484, "children": [
{ "nodeid": 19, "leaf": -0.167344257 , "cover": 10688.123 },
{ "nodeid": 20, "leaf": -0.102017403 , "cover": 9848.52637 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00195821421, "yes": 21, "no": 22, "missing": 21 , "gain": 1193.92212, "cover": 16537.7012, "children": [
{ "nodeid": 21, "leaf": -0.0880585611 , "cover": 7136.01025 },
{ "nodeid": 22, "leaf": 0.0204341989 , "cover": 9401.69043 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00429458218, "yes": 5, "no": 6, "missing": 5 , "gain": 15801.5078, "cover": 83017.2344, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 4370.49463, "cover": 40508.3555, "children": [
{ "nodeid": 11, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00142091652, "yes": 23, "no": 24, "missing": 23 , "gain": 1141.38391, "cover": 18253.9785, "children": [
{ "nodeid": 23, "leaf": -0.0513293743 , "cover": 10007.9707 },
{ "nodeid": 24, "leaf": 0.0491566584 , "cover": 8246.00684 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 5, "yes": 25, "no": 26, "missing": 25 , "gain": 479.779297, "cover": 22254.377, "children": [
{ "nodeid": 25, "leaf": 0.1115935 , "cover": 17897.2852 },
{ "nodeid": 26, "leaf": 0.185622811 , "cover": 4357.09277 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 12, "yes": 13, "no": 14, "missing": 13 , "gain": 1979.09375, "cover": 42508.8828, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 3, "yes": 27, "no": 28, "missing": 27 , "gain": 420.474609, "cover": 18680.7656, "children": [
{ "nodeid": 27, "leaf": 0.109180249 , "cover": 2152.66772 },
{ "nodeid": 28, "leaf": 0.203235671 , "cover": 16528.0977 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0117033608, "yes": 29, "no": 30, "missing": 29 , "gain": 227.40625, "cover": 23828.1172, "children": [
{ "nodeid": 29, "leaf": 0.247509792 , "cover": 6551.84473 },
{ "nodeid": 30, "leaf": 0.291453838 , "cover": 17276.2734 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.000269892567, "yes": 1, "no": 2, "missing": 1 , "gain": 74201.1562, "cover": 151710.281, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00466988003, "yes": 3, "no": 4, "missing": 3 , "gain": 12146.4258, "cover": 76624.1406, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -14, "yes": 7, "no": 8, "missing": 7 , "gain": 1439.01562, "cover": 36997.9375, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.012173973, "yes": 15, "no": 16, "missing": 15 , "gain": 175.453125, "cover": 20892.5566, "children": [
{ "nodeid": 15, "leaf": -0.267852992 , "cover": 15252.7324 },
{ "nodeid": 16, "leaf": -0.226376802 , "cover": 5639.82324 }
]},
{ "nodeid": 8, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 17, "no": 18, "missing": 17 , "gain": 343.06543, "cover": 16105.3809, "children": [
{ "nodeid": 17, "leaf": -0.188725367 , "cover": 13895.4893 },
{ "nodeid": 18, "leaf": -0.103809252 , "cover": 2209.89136 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00166700711, "yes": 9, "no": 10, "missing": 9 , "gain": 1401.75342, "cover": 39626.2031, "children": [
{ "nodeid": 9, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 1797, "yes": 19, "no": 20, "missing": 19 , "gain": 299.958984, "cover": 17944.8145, "children": [
{ "nodeid": 19, "leaf": -0.0549696498 , "cover": 3904.75415 },
{ "nodeid": 20, "leaf": -0.117659569 , "cover": 14040.0596 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.000829122262, "yes": 21, "no": 22, "missing": 21 , "gain": 183.728699, "cover": 21681.3906, "children": [
{ "nodeid": 21, "leaf": -0.0537587777 , "cover": 7503.20752 },
{ "nodeid": 22, "leaf": -0.0150572574 , "cover": 14178.1826 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 8, "yes": 5, "no": 6, "missing": 5 , "gain": 11225.0156, "cover": 75086.1406, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00247880933, "yes": 11, "no": 12, "missing": 11 , "gain": 2001.05176, "cover": 46268.8477, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 270.25769, "cover": 25304.1699, "children": [
{ "nodeid": 23, "leaf": 0.0224324334 , "cover": 13843.1904 },
{ "nodeid": 24, "leaf": 0.0639567822 , "cover": 11460.9785 }
]},
{ "nodeid": 12, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0238213278, "yes": 25, "no": 26, "missing": 25 , "gain": 371.431152, "cover": 20964.6777, "children": [
{ "nodeid": 25, "leaf": 0.116362058 , "cover": 19057.0938 },
{ "nodeid": 26, "leaf": 0.208952472 , "cover": 1907.58435 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00986831635, "yes": 13, "no": 14, "missing": 13 , "gain": 741.769531, "cover": 28817.2949, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 14, "yes": 27, "no": 28, "missing": 27 , "gain": 107.272461, "cover": 9108.69238, "children": [
{ "nodeid": 27, "leaf": 0.172473595 , "cover": 5324.80908 },
{ "nodeid": 28, "leaf": 0.216698334 , "cover": 3783.88306 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0195996091, "yes": 29, "no": 30, "missing": 29 , "gain": 83.1601562, "cover": 19708.6035, "children": [
{ "nodeid": 29, "leaf": 0.243253395 , "cover": 7535.92627 },
{ "nodeid": 30, "leaf": 0.270255059 , "cover": 12172.6768 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": 0, "yes": 1, "no": 2, "missing": 1 , "gain": 49655.4141, "cover": 143577.094, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -11, "yes": 3, "no": 4, "missing": 3 , "gain": 8889.11133, "cover": 66592.8047, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -18, "yes": 7, "no": 8, "missing": 7 , "gain": 568.175781, "cover": 25884.75, "children": [
{ "nodeid": 7, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 1670, "yes": 15, "no": 16, "missing": 15 , "gain": 19.9414062, "cover": 13694.0693, "children": [
{ "nodeid": 15, "leaf": -0.251973063 , "cover": 9524.35352 },
{ "nodeid": 16, "leaf": -0.234768748 , "cover": 4169.71631 }
]},
{ "nodeid": 8, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 1042, "yes": 17, "no": 18, "missing": 17 , "gain": 170.058594, "cover": 12190.6797, "children": [
{ "nodeid": 17, "leaf": -0.225167707 , "cover": 3428.53516 },
{ "nodeid": 18, "leaf": -0.172499418 , "cover": 8762.14453 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 1550.53711, "cover": 40708.0586, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 19, "no": 20, "missing": 19 , "gain": 579.049316, "cover": 22501.916, "children": [
{ "nodeid": 19, "leaf": -0.13167417 , "cover": 12894.4385 },
{ "nodeid": 20, "leaf": -0.0667998716 , "cover": 9607.47754 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 21, "no": 22, "missing": 21 , "gain": 615.651123, "cover": 18206.1406, "children": [
{ "nodeid": 21, "leaf": -0.0979673192 , "cover": 3725.82764 },
{ "nodeid": 22, "leaf": -0.00681615109 , "cover": 14480.3135 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 7, "yes": 5, "no": 6, "missing": 5 , "gain": 11452.8594, "cover": 76984.2812, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 2697.61255, "cover": 41888.4766, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 776.965698, "cover": 19599.0234, "children": [
{ "nodeid": 23, "leaf": -0.0451877154 , "cover": 12757.3242 },
{ "nodeid": 24, "leaf": 0.0383459553 , "cover": 6841.69922 }
]},
{ "nodeid": 12, "depth": 3, "split": "yards_to_goal", "split_condition": 46, "yes": 25, "no": 26, "missing": 25 , "gain": 363.899414, "cover": 22289.4531, "children": [
{ "nodeid": 25, "leaf": 0.118663587 , "cover": 8364.68457 },
{ "nodeid": 26, "leaf": 0.0658751428 , "cover": 13924.7695 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 12, "yes": 13, "no": 14, "missing": 13 , "gain": 1623.9082, "cover": 35095.8047, "children": [
{ "nodeid": 13, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 27, "no": 28, "missing": 27 , "gain": 415.209961, "cover": 16230.9961, "children": [
{ "nodeid": 27, "leaf": 0.108169667 , "cover": 6651.87402 },
{ "nodeid": 28, "leaf": 0.173250586 , "cover": 9579.12207 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 16, "yes": 29, "no": 30, "missing": 29 , "gain": 214.111328, "cover": 18864.8066, "children": [
{ "nodeid": 29, "leaf": 0.200637728 , "cover": 5757.99072 },
{ "nodeid": 30, "leaf": 0.247049883 , "cover": 13106.8164 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.000524694973, "yes": 1, "no": 2, "missing": 1 , "gain": 36642.6758, "cover": 135954.656, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00510760024, "yes": 3, "no": 4, "missing": 3 , "gain": 9110.66406, "cover": 73081.1875, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -15, "yes": 7, "no": 8, "missing": 7 , "gain": 1241.39648, "cover": 28708.8906, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0114450883, "yes": 15, "no": 16, "missing": 15 , "gain": 179.935547, "cover": 15349.8467, "children": [
{ "nodeid": 15, "leaf": -0.236052975 , "cover": 11614.5312 },
{ "nodeid": 16, "leaf": -0.185419932 , "cover": 3735.31592 }
]},
{ "nodeid": 8, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.022157887, "yes": 17, "no": 18, "missing": 17 , "gain": 273.450195, "cover": 13359.0449, "children": [
{ "nodeid": 17, "leaf": -0.194314003 , "cover": 2933.25122 },
{ "nodeid": 18, "leaf": -0.125137895 , "cover": 10425.793 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 2182.3877, "cover": 44372.2969, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 19, "no": 20, "missing": 19 , "gain": 328.783936, "cover": 24038.2383, "children": [
{ "nodeid": 19, "leaf": -0.108040743 , "cover": 10351.04 },
{ "nodeid": 20, "leaf": -0.0607934073 , "cover": 13687.1973 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00169204141, "yes": 21, "no": 22, "missing": 21 , "gain": 476.927216, "cover": 20334.0586, "children": [
{ "nodeid": 21, "leaf": -0.031060895 , "cover": 7772.21484 },
{ "nodeid": 22, "leaf": 0.0319688879 , "cover": 12561.8447 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 9, "yes": 5, "no": 6, "missing": 5 , "gain": 7049.26172, "cover": 62873.4609, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 1417.46802, "cover": 41060.6094, "children": [
{ "nodeid": 11, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00332663208, "yes": 23, "no": 24, "missing": 23 , "gain": 787.622803, "cover": 18532.6465, "children": [
{ "nodeid": 23, "leaf": -0.0100775948 , "cover": 11732.6611 },
{ "nodeid": 24, "leaf": 0.0754648671 , "cover": 6799.98438 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 6, "yes": 25, "no": 26, "missing": 25 , "gain": 369.78418, "cover": 22527.9629, "children": [
{ "nodeid": 25, "leaf": 0.0794177577 , "cover": 15891.0918 },
{ "nodeid": 26, "leaf": 0.13564086 , "cover": 6636.87061 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0113700265, "yes": 13, "no": 14, "missing": 13 , "gain": 721.857422, "cover": 21812.8535, "children": [
{ "nodeid": 13, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 27, "no": 28, "missing": 27 , "gain": 189.699707, "cover": 8285.53027, "children": [
{ "nodeid": 27, "leaf": 0.115711525 , "cover": 2953.65674 },
{ "nodeid": 28, "leaf": 0.178987831 , "cover": 5331.87354 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0215025228, "yes": 29, "no": 30, "missing": 29 , "gain": 56.5507812, "cover": 13527.3223, "children": [
{ "nodeid": 29, "leaf": 0.214536697 , "cover": 5066.33545 },
{ "nodeid": 30, "leaf": 0.241566643 , "cover": 8460.9873 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.000533126411, "yes": 1, "no": 2, "missing": 1 , "gain": 25200.6523, "cover": 128979.922, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -11, "yes": 3, "no": 4, "missing": 3 , "gain": 7738.96777, "cover": 69726.8672, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0106343077, "yes": 7, "no": 8, "missing": 7 , "gain": 697.783203, "cover": 20329.1504, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -15, "yes": 15, "no": 16, "missing": 15 , "gain": 104.013672, "cover": 12310.6279, "children": [
{ "nodeid": 15, "leaf": -0.224029705 , "cover": 10383.834 },
{ "nodeid": 16, "leaf": -0.1731617 , "cover": 1926.79407 }
]},
{ "nodeid": 8, "depth": 3, "split": "pos_score_diff_start", "split_condition": -18, "yes": 17, "no": 18, "missing": 17 , "gain": 95.4614258, "cover": 8018.52148, "children": [
{ "nodeid": 17, "leaf": -0.188881502 , "cover": 1346.72559 },
{ "nodeid": 18, "leaf": -0.130374879 , "cover": 6671.7959 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00241394318, "yes": 9, "no": 10, "missing": 9 , "gain": 1042.68872, "cover": 49397.7227, "children": [
{ "nodeid": 9, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0115479697, "yes": 19, "no": 20, "missing": 19 , "gain": 395.87085, "cover": 17096.166, "children": [
{ "nodeid": 19, "leaf": -0.143535957 , "cover": 3149.95459 },
{ "nodeid": 20, "leaf": -0.0650298446 , "cover": 13946.2109 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 21, "no": 22, "missing": 21 , "gain": 310.513275, "cover": 32301.5547, "children": [
{ "nodeid": 21, "leaf": -0.0373101011 , "cover": 16755.1133 },
{ "nodeid": 22, "leaf": 0.00193496724 , "cover": 15546.4414 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 10, "yes": 5, "no": 6, "missing": 5 , "gain": 6059.62988, "cover": 59253.0508, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0102241579, "yes": 11, "no": 12, "missing": 11 , "gain": 831.838379, "cover": 40575.8945, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": 4, "yes": 23, "no": 24, "missing": 23 , "gain": 351.534058, "cover": 36395.7383, "children": [
{ "nodeid": 23, "leaf": 0.0266118981 , "cover": 22586.9258 },
{ "nodeid": 24, "leaf": 0.0671203956 , "cover": 13808.8125 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 134.957764, "cover": 4180.15771, "children": [
{ "nodeid": 25, "leaf": 0.0477962904 , "cover": 594.200134 },
{ "nodeid": 26, "leaf": 0.150806174 , "cover": 3585.95752 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0128362011, "yes": 13, "no": 14, "missing": 13 , "gain": 706.011719, "cover": 18677.1543, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 16, "yes": 27, "no": 28, "missing": 27 , "gain": 128.052246, "cover": 8204.41602, "children": [
{ "nodeid": 27, "leaf": 0.13163875 , "cover": 6308.07666 },
{ "nodeid": 28, "leaf": 0.191018552 , "cover": 1896.3396 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 15, "yes": 29, "no": 30, "missing": 29 , "gain": 30.8447266, "cover": 10472.7373, "children": [
{ "nodeid": 29, "leaf": 0.203479677 , "cover": 2404.05908 },
{ "nodeid": 30, "leaf": 0.229802877 , "cover": 8068.67773 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00115545944, "yes": 1, "no": 2, "missing": 1 , "gain": 17687.1699, "cover": 122782.352, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -14, "yes": 3, "no": 4, "missing": 3 , "gain": 3805.71387, "cover": 45028.0547, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0137623586, "yes": 7, "no": 8, "missing": 7 , "gain": 297.143555, "cover": 11982.9375, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0168132037, "yes": 15, "no": 16, "missing": 15 , "gain": 7.7109375, "cover": 7707.35303, "children": [
{ "nodeid": 15, "leaf": -0.223096877 , "cover": 6696.44629 },
{ "nodeid": 16, "leaf": -0.202943802 , "cover": 1010.90692 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 101.501221, "cover": 4275.58447, "children": [
{ "nodeid": 17, "leaf": -0.175871894 , "cover": 2901.23364 },
{ "nodeid": 18, "leaf": -0.109716192 , "cover": 1374.35083 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 590.974854, "cover": 33045.1172, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -11, "yes": 19, "no": 20, "missing": 19 , "gain": 331.925049, "cover": 18590.3301, "children": [
{ "nodeid": 19, "leaf": -0.143537343 , "cover": 3601.65063 },
{ "nodeid": 20, "leaf": -0.0759073496 , "cover": 14988.6797 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00555429049, "yes": 21, "no": 22, "missing": 21 , "gain": 441.141785, "cover": 14454.7871, "children": [
{ "nodeid": 21, "leaf": -0.0879721642 , "cover": 4392.43604 },
{ "nodeid": 22, "leaf": -0.0120101171 , "cover": 10062.3506 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00594323222, "yes": 5, "no": 6, "missing": 5 , "gain": 7175.07764, "cover": 77754.2969, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 1966.79102, "cover": 56121.793, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 360.704803, "cover": 26655.5039, "children": [
{ "nodeid": 23, "leaf": -0.0424222015 , "cover": 13831.6113 },
{ "nodeid": 24, "leaf": 0.00414099498 , "cover": 12823.8936 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 6, "yes": 25, "no": 26, "missing": 25 , "gain": 292.503174, "cover": 29466.2871, "children": [
{ "nodeid": 25, "leaf": 0.0455491915 , "cover": 24102.5684 },
{ "nodeid": 26, "leaf": 0.097192578 , "cover": 5363.71973 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 15, "yes": 13, "no": 14, "missing": 13 , "gain": 1147.92578, "cover": 21632.5039, "children": [
{ "nodeid": 13, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0197708122, "yes": 27, "no": 28, "missing": 27 , "gain": 332.229004, "cover": 13000.8652, "children": [
{ "nodeid": 27, "leaf": 0.0986848921 , "cover": 9697.81934 },
{ "nodeid": 28, "leaf": 0.172154948 , "cover": 3303.04614 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0124712046, "yes": 29, "no": 30, "missing": 29 , "gain": 85.2792969, "cover": 8631.63867, "children": [
{ "nodeid": 29, "leaf": 0.171166316 , "cover": 1707.92188 },
{ "nodeid": 30, "leaf": 0.221379355 , "cover": 6923.71729 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.000999476411, "yes": 1, "no": 2, "missing": 1 , "gain": 12681.1113, "cover": 117539.172, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -13, "yes": 3, "no": 4, "missing": 3 , "gain": 5660.99609, "cover": 70718.5938, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0111023132, "yes": 7, "no": 8, "missing": 7 , "gain": 625.570312, "cover": 14363.8252, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0173831731, "yes": 15, "no": 16, "missing": 15 , "gain": 70.6933594, "cover": 8289.03516, "children": [
{ "nodeid": 15, "leaf": -0.213303879 , "cover": 5943.75146 },
{ "nodeid": 16, "leaf": -0.172011748 , "cover": 2345.28345 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 89.2329102, "cover": 6074.79053, "children": [
{ "nodeid": 17, "leaf": -0.135662436 , "cover": 3834.01074 },
{ "nodeid": 18, "leaf": -0.0853375942 , "cover": 2240.78003 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 1246.17871, "cover": 56354.7656, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 19, "no": 20, "missing": 19 , "gain": 308.014893, "cover": 29666.5625, "children": [
{ "nodeid": 19, "leaf": -0.0782770067 , "cover": 11951.082 },
{ "nodeid": 20, "leaf": -0.0367238484 , "cover": 17715.4805 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0115890196, "yes": 21, "no": 22, "missing": 21 , "gain": 492.642822, "cover": 26688.2051, "children": [
{ "nodeid": 21, "leaf": -0.105748534 , "cover": 1486.43652 },
{ "nodeid": 22, "leaf": 0.0126998443 , "cover": 25201.7676 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 10, "yes": 5, "no": 6, "missing": 5 , "gain": 3654.95312, "cover": 46820.5781, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 438.763672, "cover": 32208.3027, "children": [
{ "nodeid": 11, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 23, "no": 24, "missing": 23 , "gain": 267.939728, "cover": 14768.1299, "children": [
{ "nodeid": 23, "leaf": 0.0613082647 , "cover": 4031.28296 },
{ "nodeid": 24, "leaf": 0.000842059148 , "cover": 10736.8467 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 6, "yes": 25, "no": 26, "missing": 25 , "gain": 175.75293, "cover": 17440.1738, "children": [
{ "nodeid": 25, "leaf": 0.0498353392 , "cover": 11539.6904 },
{ "nodeid": 26, "leaf": 0.0922789499 , "cover": 5900.4834 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0134295411, "yes": 13, "no": 14, "missing": 13 , "gain": 737.65918, "cover": 14612.2764, "children": [
{ "nodeid": 13, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 27, "no": 28, "missing": 27 , "gain": 184.255371, "cover": 7227.52393, "children": [
{ "nodeid": 27, "leaf": 0.0754921138 , "cover": 2621.49463 },
{ "nodeid": 28, "leaf": 0.141963676 , "cover": 4606.0293 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0215025228, "yes": 29, "no": 30, "missing": 29 , "gain": 36.5268555, "cover": 7384.75244, "children": [
{ "nodeid": 29, "leaf": 0.186398163 , "cover": 2279.4397 },
{ "nodeid": 30, "leaf": 0.217288449 , "cover": 5105.3125 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00297661987, "yes": 1, "no": 2, "missing": 1 , "gain": 9136.86816, "cover": 112894.555, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -15, "yes": 3, "no": 4, "missing": 3 , "gain": 1887.27783, "cover": 26690.0566, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0140435006, "yes": 7, "no": 8, "missing": 7 , "gain": 281.040527, "cover": 8527.93555, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 8.92041016, "cover": 5263.37793, "children": [
{ "nodeid": 15, "leaf": -0.21422188 , "cover": 3853.77051 },
{ "nodeid": 16, "leaf": -0.19452922 , "cover": 1409.60742 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 81.0097656, "cover": 3264.55737, "children": [
{ "nodeid": 17, "leaf": -0.156635284 , "cover": 2166.89673 },
{ "nodeid": 18, "leaf": -0.0897861272 , "cover": 1097.66077 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0297146104, "yes": 9, "no": 10, "missing": 9 , "gain": 287.938599, "cover": 18162.1211, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 19, "no": 20, "missing": 19 , "gain": 155.876648, "cover": 1667.78918, "children": [
{ "nodeid": 19, "leaf": -0.201722294 , "cover": 903.340027 },
{ "nodeid": 20, "leaf": -0.0788757801 , "cover": 764.449158 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 21, "no": 22, "missing": 21 , "gain": 177.820435, "cover": 16494.332, "children": [
{ "nodeid": 21, "leaf": -0.0671589822 , "cover": 13954.8096 },
{ "nodeid": 22, "leaf": -0.00961772539 , "cover": 2539.52148 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00849800371, "yes": 5, "no": 6, "missing": 5 , "gain": 5492.40723, "cover": 86204.5, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 1225.78357, "cover": 72995.1797, "children": [
{ "nodeid": 11, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00214054715, "yes": 23, "no": 24, "missing": 23 , "gain": 422.514648, "cover": 35687.6914, "children": [
{ "nodeid": 23, "leaf": -0.029603241 , "cover": 26539.9414 },
{ "nodeid": 24, "leaf": 0.0202377792 , "cover": 9147.74902 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 6, "yes": 25, "no": 26, "missing": 25 , "gain": 418.119385, "cover": 37307.4922, "children": [
{ "nodeid": 25, "leaf": 0.0249286443 , "cover": 30404 },
{ "nodeid": 26, "leaf": 0.0794500932 , "cover": 6903.49219 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 11, "yes": 13, "no": 14, "missing": 13 , "gain": 688.390625, "cover": 13209.3164, "children": [
{ "nodeid": 13, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0452895537, "yes": 27, "no": 28, "missing": 27 , "gain": 167.150024, "cover": 5044.0625, "children": [
{ "nodeid": 27, "leaf": 0.0736296922 , "cover": 4050.229 },
{ "nodeid": 28, "leaf": 0.165180847 , "cover": 993.833435 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 19, "yes": 29, "no": 30, "missing": 29 , "gain": 146.994141, "cover": 8165.25342, "children": [
{ "nodeid": 29, "leaf": 0.155251622 , "cover": 3583.34863 },
{ "nodeid": 30, "leaf": 0.209478185 , "cover": 4581.90479 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": -10, "yes": 1, "no": 2, "missing": 1 , "gain": 6501.76318, "cover": 109030.227, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -18, "yes": 3, "no": 4, "missing": 3 , "gain": 867.883301, "cover": 14555.8086, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -25, "yes": 7, "no": 8, "missing": 7 , "gain": 56.8422852, "cover": 5401.64844, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -34, "yes": 15, "no": 16, "missing": 15 , "gain": 0.649902344, "cover": 2777.72314, "children": [
{ "nodeid": 15, "leaf": -0.214185476 , "cover": 1300.04578 },
{ "nodeid": 16, "leaf": -0.204154924 , "cover": 1477.67737 }
]},
{ "nodeid": 8, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 1559, "yes": 17, "no": 18, "missing": 17 , "gain": 42.1585693, "cover": 2623.92529, "children": [
{ "nodeid": 17, "leaf": -0.192883641 , "cover": 1320.53821 },
{ "nodeid": 18, "leaf": -0.141779572 , "cover": 1303.38708 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "adj_TimeSecsRem", "split_condition": 651, "yes": 9, "no": 10, "missing": 9 , "gain": 203.169312, "cover": 9154.16016, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 1.5, "yes": 19, "no": 20, "missing": 20 , "gain": 26.1021118, "cover": 1158.6228, "children": [
{ "nodeid": 19, "leaf": -0.215827852 , "cover": 312.522858 },
{ "nodeid": 20, "leaf": -0.147395015 , "cover": 846.099976 }
]},
{ "nodeid": 10, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 21, "no": 22, "missing": 21 , "gain": 120.535522, "cover": 7995.53711, "children": [
{ "nodeid": 21, "leaf": -0.0367544703 , "cover": 2218.62573 },
{ "nodeid": 22, "leaf": -0.0916204378 , "cover": 5776.91162 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 8, "yes": 5, "no": 6, "missing": 5 , "gain": 4785.86377, "cover": 94474.4141, "children": [
{ "nodeid": 5, "depth": 2, "split": "pos_score_diff_start", "split_condition": 0, "yes": 11, "no": 12, "missing": 11 , "gain": 704.325684, "cover": 81701.9766, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 235.899078, "cover": 34623.75, "children": [
{ "nodeid": 23, "leaf": -0.0392603315 , "cover": 15714.6943 },
{ "nodeid": 24, "leaf": -0.00610221876 , "cover": 18909.0566 }
]},
{ "nodeid": 12, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 25, "no": 26, "missing": 25 , "gain": 389.37915, "cover": 47078.2227, "children": [
{ "nodeid": 25, "leaf": 0.0505870953 , "cover": 10397.3271 },
{ "nodeid": 26, "leaf": 0.00674092118 , "cover": 36680.8945 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 16, "yes": 13, "no": 14, "missing": 13 , "gain": 745.008301, "cover": 12772.4434, "children": [
{ "nodeid": 13, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 685, "yes": 27, "no": 28, "missing": 27 , "gain": 266.995972, "cover": 7632.2251, "children": [
{ "nodeid": 27, "leaf": 0.182521224 , "cover": 1123.02283 },
{ "nodeid": 28, "leaf": 0.0769236684 , "cover": 6509.20215 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 19, "yes": 29, "no": 30, "missing": 29 , "gain": 61.1347656, "cover": 5140.21826, "children": [
{ "nodeid": 29, "leaf": 0.152514264 , "cover": 1264.51318 },
{ "nodeid": 30, "leaf": 0.20351775 , "cover": 3875.70508 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": -9, "yes": 1, "no": 2, "missing": 1 , "gain": 4659.79053, "cover": 105850.023, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -18, "yes": 3, "no": 4, "missing": 3 , "gain": 1104.71411, "cover": 16499.6484, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -22, "yes": 7, "no": 8, "missing": 7 , "gain": 68.2116699, "cover": 4590.42969, "children": [
{ "nodeid": 7, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 1786, "yes": 15, "no": 16, "missing": 15 , "gain": 16.1091309, "cover": 3061.90259, "children": [
{ "nodeid": 15, "leaf": -0.206684992 , "cover": 2308.13306 },
{ "nodeid": 16, "leaf": -0.172017738 , "cover": 753.76947 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 43.4837646, "cover": 1528.52698, "children": [
{ "nodeid": 17, "leaf": -0.171241567 , "cover": 986.434143 },
{ "nodeid": 18, "leaf": -0.100353554 , "cover": 542.092834 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "adj_TimeSecsRem", "split_condition": 451, "yes": 9, "no": 10, "missing": 9 , "gain": 303.126221, "cover": 11909.2188, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 1.5, "yes": 19, "no": 20, "missing": 20 , "gain": 22.7362671, "cover": 976.648254, "children": [
{ "nodeid": 19, "leaf": -0.212146744 , "cover": 363.859283 },
{ "nodeid": 20, "leaf": -0.148086756 , "cover": 612.789001 }
]},
{ "nodeid": 10, "depth": 3, "split": "yards_to_goal", "split_condition": 54, "yes": 21, "no": 22, "missing": 21 , "gain": 195.187378, "cover": 10932.5703, "children": [
{ "nodeid": 21, "leaf": -0.0242975187 , "cover": 4561.58643 },
{ "nodeid": 22, "leaf": -0.0784976855 , "cover": 6370.98389 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 11, "yes": 5, "no": 6, "missing": 5 , "gain": 3486.85327, "cover": 89350.375, "children": [
{ "nodeid": 5, "depth": 2, "split": "yards_to_goal", "split_condition": 53, "yes": 11, "no": 12, "missing": 11 , "gain": 801.078491, "cover": 80899.3516, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": 4, "yes": 23, "no": 24, "missing": 23 , "gain": 455.805298, "cover": 35454.9258, "children": [
{ "nodeid": 23, "leaf": 0.0160674658 , "cover": 27900.9961 },
{ "nodeid": 24, "leaf": 0.0714466572 , "cover": 7553.93018 }
]},
{ "nodeid": 12, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 450.678986, "cover": 45444.4297, "children": [
{ "nodeid": 25, "leaf": -0.0319901481 , "cover": 22915.1914 },
{ "nodeid": 26, "leaf": 0.00784452539 , "cover": 22529.2363 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 19, "yes": 13, "no": 14, "missing": 13 , "gain": 437.9375, "cover": 8451.02051, "children": [
{ "nodeid": 13, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 868, "yes": 27, "no": 28, "missing": 27 , "gain": 190.721802, "cover": 5211.43555, "children": [
{ "nodeid": 27, "leaf": 0.184701189 , "cover": 964.178223 },
{ "nodeid": 28, "leaf": 0.0861429572 , "cover": 4247.25732 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 22, "yes": 29, "no": 30, "missing": 29 , "gain": 13.0227051, "cover": 3239.58521, "children": [
{ "nodeid": 29, "leaf": 0.177108645 , "cover": 916.516235 },
{ "nodeid": 30, "leaf": 0.206289172 , "cover": 2323.06909 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00856423471, "yes": 1, "no": 2, "missing": 1 , "gain": 3850.03223, "cover": 103321.391, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -15, "yes": 3, "no": 4, "missing": 3 , "gain": 520.310791, "cover": 9484.39844, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0147930728, "yes": 7, "no": 8, "missing": 7 , "gain": 172.661621, "cover": 4697.14453, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 8.87255859, "cover": 3054.07495, "children": [
{ "nodeid": 15, "leaf": -0.204321846 , "cover": 2169.2688 },
{ "nodeid": 16, "leaf": -0.179303154 , "cover": 884.806274 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 100.258545, "cover": 1643.06958, "children": [
{ "nodeid": 17, "leaf": -0.153895795 , "cover": 1045.96448 },
{ "nodeid": 18, "leaf": -0.0510793924 , "cover": 597.105042 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0557855479, "yes": 9, "no": 10, "missing": 9 , "gain": 131.339355, "cover": 4787.25391, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 19, "no": 20, "missing": 19 , "gain": 38.6392822, "cover": 747.385681, "children": [
{ "nodeid": 19, "leaf": -0.202154994 , "cover": 339.786102 },
{ "nodeid": 20, "leaf": -0.110271849 , "cover": 407.599579 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 21, "no": 22, "missing": 21 , "gain": 89.7542419, "cover": 4039.86816, "children": [
{ "nodeid": 21, "leaf": -0.0835543573 , "cover": 2568.41089 },
{ "nodeid": 22, "leaf": -0.0215909574 , "cover": 1471.45715 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00979443546, "yes": 5, "no": 6, "missing": 5 , "gain": 3018.22314, "cover": 93836.9922, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 746.330322, "cover": 85297.6562, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": -5, "yes": 23, "no": 24, "missing": 23 , "gain": 274.728302, "cover": 42624.582, "children": [
{ "nodeid": 23, "leaf": -0.0432307273 , "cover": 12329.4238 },
{ "nodeid": 24, "leaf": -0.0078191217 , "cover": 30295.1602 }
]},
{ "nodeid": 12, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.000239325309, "yes": 25, "no": 26, "missing": 25 , "gain": 345.574585, "cover": 42673.0742, "children": [
{ "nodeid": 25, "leaf": -0.00411600713 , "cover": 15802.9756 },
{ "nodeid": 26, "leaf": 0.0331547372 , "cover": 26870.0996 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 16, "yes": 13, "no": 14, "missing": 13 , "gain": 499.724121, "cover": 8539.33789, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 1, "yes": 27, "no": 28, "missing": 27 , "gain": 212.565857, "cover": 5183.88037, "children": [
{ "nodeid": 27, "leaf": -0.0320684351 , "cover": 541.942749 },
{ "nodeid": 28, "leaf": 0.100245349 , "cover": 4641.9375 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0135650411, "yes": 29, "no": 30, "missing": 29 , "gain": 59.0024414, "cover": 3355.45776, "children": [
{ "nodeid": 29, "leaf": 0.130169183 , "cover": 634.445679 },
{ "nodeid": 30, "leaf": 0.198344633 , "cover": 2721.01196 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00899499469, "yes": 1, "no": 2, "missing": 1 , "gain": 2688.05078, "cover": 100870.344, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -14, "yes": 3, "no": 4, "missing": 3 , "gain": 517.065918, "cover": 8136.34619, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0140434373, "yes": 7, "no": 8, "missing": 7 , "gain": 179.904785, "cover": 4056.90454, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 18.484375, "cover": 2746.62524, "children": [
{ "nodeid": 15, "leaf": -0.201305345 , "cover": 1859.91174 },
{ "nodeid": 16, "leaf": -0.165387258 , "cover": 886.713562 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 55.5624695, "cover": 1310.2793, "children": [
{ "nodeid": 17, "leaf": -0.132193923 , "cover": 804.869934 },
{ "nodeid": 18, "leaf": -0.0474679992 , "cover": 505.409363 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "yards_to_goal", "split_condition": 35, "yes": 9, "no": 10, "missing": 9 , "gain": 113.874451, "cover": 4079.44141, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 19, "no": 20, "missing": 19 , "gain": 127.519554, "cover": 776.519897, "children": [
{ "nodeid": 19, "leaf": -0.0368128791 , "cover": 588.169067 },
{ "nodeid": 20, "leaf": 0.151857272 , "cover": 188.350815 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0468340851, "yes": 21, "no": 22, "missing": 21 , "gain": 129.232758, "cover": 3302.92139, "children": [
{ "nodeid": 21, "leaf": -0.163247719 , "cover": 562.791321 },
{ "nodeid": 22, "leaf": -0.0580477975 , "cover": 2740.13013 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 14, "yes": 5, "no": 6, "missing": 5 , "gain": 2293.66162, "cover": 92733.9922, "children": [
{ "nodeid": 5, "depth": 2, "split": "yards_to_goal", "split_condition": 41, "yes": 11, "no": 12, "missing": 11 , "gain": 570.119202, "cover": 87578.8047, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": 6, "yes": 23, "no": 24, "missing": 23 , "gain": 231.012817, "cover": 26994.666, "children": [
{ "nodeid": 23, "leaf": 0.0183287729 , "cover": 22762.4062 },
{ "nodeid": 24, "leaf": 0.0692106709 , "cover": 4232.26123 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": -4, "yes": 25, "no": 26, "missing": 25 , "gain": 371.852631, "cover": 60584.1367, "children": [
{ "nodeid": 25, "leaf": -0.034835171 , "cover": 15960.707 },
{ "nodeid": 26, "leaf": 0.000734279747 , "cover": 44623.4297 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.013521133, "yes": 13, "no": 14, "missing": 13 , "gain": 312.306396, "cover": 5155.19092, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 19, "yes": 27, "no": 28, "missing": 27 , "gain": 44.9981995, "cover": 2465.17651, "children": [
{ "nodeid": 27, "leaf": 0.0755422786 , "cover": 2041.59045 },
{ "nodeid": 28, "leaf": 0.147253051 , "cover": 423.585999 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0214318074, "yes": 29, "no": 30, "missing": 29 , "gain": 27.7814941, "cover": 2690.01465, "children": [
{ "nodeid": 29, "leaf": 0.155436456 , "cover": 824.80426 },
{ "nodeid": 30, "leaf": 0.200178787 , "cover": 1865.21045 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0113869049, "yes": 1, "no": 2, "missing": 1 , "gain": 2067.51099, "cover": 99180.6172, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -15, "yes": 3, "no": 4, "missing": 3 , "gain": 1835.08142, "cover": 93059.2031, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.014371397, "yes": 7, "no": 8, "missing": 7 , "gain": 314.442505, "cover": 4409.5, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 15.8839111, "cover": 2191.65674, "children": [
{ "nodeid": 15, "leaf": -0.199056804 , "cover": 1522.85535 },
{ "nodeid": 16, "leaf": -0.161095157 , "cover": 668.801331 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 63.5464783, "cover": 2217.84351, "children": [
{ "nodeid": 17, "leaf": -0.107246637 , "cover": 1372.3208 },
{ "nodeid": 18, "leaf": -0.0374897942 , "cover": 845.522705 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 9, "no": 10, "missing": 9 , "gain": 642.612183, "cover": 88649.7031, "children": [
{ "nodeid": 9, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 19, "no": 20, "missing": 20 , "gain": 237.357483, "cover": 21979.5156, "children": [
{ "nodeid": 19, "leaf": -0.00709583983 , "cover": 9325.18262 },
{ "nodeid": 20, "leaf": -0.0491485447 , "cover": 12654.333 }
]},
{ "nodeid": 10, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 21, "no": 22, "missing": 22 , "gain": 477.45874, "cover": 66670.1875, "children": [
{ "nodeid": 21, "leaf": 0.0440639816 , "cover": 12101.3281 },
{ "nodeid": 22, "leaf": 0.000154312744 , "cover": 54568.8594 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 15, "yes": 5, "no": 6, "missing": 5 , "gain": 407.496948, "cover": 6121.41309, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.043376714, "yes": 11, "no": 12, "missing": 11 , "gain": 150.240143, "cover": 3856.27661, "children": [
{ "nodeid": 11, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 64, "yes": 23, "no": 24, "missing": 23 , "gain": 97.7124176, "cover": 2888.71484, "children": [
{ "nodeid": 23, "leaf": -0.121908359 , "cover": 126.118187 },
{ "nodeid": 24, "leaf": 0.0574836209 , "cover": 2762.59668 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 160.187927, "cover": 967.561768, "children": [
{ "nodeid": 25, "leaf": -0.0427171513 , "cover": 158.85585 },
{ "nodeid": 26, "leaf": 0.176701531 , "cover": 808.705933 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0174154267, "yes": 13, "no": 14, "missing": 13 , "gain": 39.9407959, "cover": 2265.13647, "children": [
{ "nodeid": 13, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 27, "no": 28, "missing": 27 , "gain": 26.7909546, "cover": 606.70636, "children": [
{ "nodeid": 27, "leaf": 0.0689482316 , "cover": 176.94809 },
{ "nodeid": 28, "leaf": 0.161977753 , "cover": 429.75827 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0303628445, "yes": 29, "no": 30, "missing": 29 , "gain": 3.83605957, "cover": 1658.43018, "children": [
{ "nodeid": 29, "leaf": 0.181133032 , "cover": 598.940491 },
{ "nodeid": 30, "leaf": 0.203497574 , "cover": 1059.48975 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0106620435, "yes": 1, "no": 2, "missing": 1 , "gain": 1617.03235, "cover": 98207.4219, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -14, "yes": 3, "no": 4, "missing": 3 , "gain": 369.030518, "cover": 5780.02832, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0168948974, "yes": 7, "no": 8, "missing": 7 , "gain": 98.8696289, "cover": 2596.30151, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 8.57910156, "cover": 1678.23767, "children": [
{ "nodeid": 15, "leaf": -0.197795719 , "cover": 1135.64331 },
{ "nodeid": 16, "leaf": -0.165721297 , "cover": 542.59436 }
]},
{ "nodeid": 8, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 17, "no": 18, "missing": 17 , "gain": 64.8421021, "cover": 918.063904, "children": [
{ "nodeid": 17, "leaf": -0.148125395 , "cover": 560.018799 },
{ "nodeid": 18, "leaf": -0.0390476175 , "cover": 358.045105 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "yards_to_goal", "split_condition": 35, "yes": 9, "no": 10, "missing": 9 , "gain": 98.9997253, "cover": 3183.72656, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -6, "yes": 19, "no": 20, "missing": 19 , "gain": 82.0904694, "cover": 658.4552, "children": [
{ "nodeid": 19, "leaf": -0.0314188264 , "cover": 477.805939 },
{ "nodeid": 20, "leaf": 0.126491681 , "cover": 180.649277 }
]},
{ "nodeid": 10, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0479033478, "yes": 21, "no": 22, "missing": 21 , "gain": 102.05423, "cover": 2525.27148, "children": [
{ "nodeid": 21, "leaf": -0.157183006 , "cover": 487.253662 },
{ "nodeid": 22, "leaf": -0.0553151071 , "cover": 2038.01782 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 14, "yes": 5, "no": 6, "missing": 5 , "gain": 1410.95081, "cover": 92427.3906, "children": [
{ "nodeid": 5, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 11, "no": 12, "missing": 11 , "gain": 516.680359, "cover": 88235.2891, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 268.450745, "cover": 44271.1172, "children": [
{ "nodeid": 23, "leaf": -0.0304310806 , "cover": 21343.707 },
{ "nodeid": 24, "leaf": 0.000736596354 , "cover": 22927.4102 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 284.252319, "cover": 43964.1719, "children": [
{ "nodeid": 25, "leaf": 0.0013999223 , "cover": 23629.2949 },
{ "nodeid": 26, "leaf": 0.033653684 , "cover": 20334.8789 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0135183185, "yes": 13, "no": 14, "missing": 13 , "gain": 257.100708, "cover": 4192.104, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_score_diff_start", "split_condition": 19, "yes": 27, "no": 28, "missing": 27 , "gain": 43.1893921, "cover": 2254.51465, "children": [
{ "nodeid": 27, "leaf": 0.0617880896 , "cover": 1903.55725 },
{ "nodeid": 28, "leaf": 0.138167709 , "cover": 350.957489 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0231479108, "yes": 29, "no": 30, "missing": 29 , "gain": 38.6605225, "cover": 1937.58948, "children": [
{ "nodeid": 29, "leaf": 0.135778993 , "cover": 715.324951 },
{ "nodeid": 30, "leaf": 0.194849312 , "cover": 1222.26465 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": 9, "yes": 1, "no": 2, "missing": 1 , "gain": 1301.5603, "cover": 96959.2031, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -18, "yes": 3, "no": 4, "missing": 3 , "gain": 1078.21899, "cover": 89537.6328, "children": [
{ "nodeid": 3, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0143684018, "yes": 7, "no": 8, "missing": 7 , "gain": 108.720825, "cover": 2264.97534, "children": [
{ "nodeid": 7, "depth": 3, "split": "pos_score_diff_start", "split_condition": -21, "yes": 15, "no": 16, "missing": 15 , "gain": 22.9190674, "cover": 1292.9729, "children": [
{ "nodeid": 15, "leaf": -0.193726748 , "cover": 1052.82141 },
{ "nodeid": 16, "leaf": -0.124169625 , "cover": 240.151459 }
]},
{ "nodeid": 8, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 2024, "yes": 17, "no": 18, "missing": 17 , "gain": 31.9215393, "cover": 972.002502, "children": [
{ "nodeid": 17, "leaf": -0.0478893183 , "cover": 391.330902 },
{ "nodeid": 18, "leaf": -0.121956646 , "cover": 580.671631 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "yards_to_goal", "split_condition": 65, "yes": 9, "no": 10, "missing": 9 , "gain": 470.448853, "cover": 87272.6562, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": 3, "yes": 19, "no": 20, "missing": 19 , "gain": 216.663513, "cover": 51734.2461, "children": [
{ "nodeid": 19, "leaf": 0.00221127644 , "cover": 40563.6758 },
{ "nodeid": 20, "leaf": 0.0336663947 , "cover": 11170.5693 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 21, "no": 22, "missing": 21 , "gain": 230.068512, "cover": 35538.4141, "children": [
{ "nodeid": 21, "leaf": -0.0503055826 , "cover": 8182.12354 },
{ "nodeid": 22, "leaf": -0.0120817674 , "cover": 27356.2891 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0215025228, "yes": 5, "no": 6, "missing": 5 , "gain": 499.574951, "cover": 7421.56787, "children": [
{ "nodeid": 5, "depth": 2, "split": "pos_score_diff_start", "split_condition": 21, "yes": 11, "no": 12, "missing": 11 , "gain": 123.355347, "cover": 5987.73535, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 23, "no": 24, "missing": 23 , "gain": 107.724792, "cover": 5457.33545, "children": [
{ "nodeid": 23, "leaf": 0.00290595531 , "cover": 1624.49182 },
{ "nodeid": 24, "leaf": 0.0643606409 , "cover": 3832.84351 }
]},
{ "nodeid": 12, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.00841447618, "yes": 25, "no": 26, "missing": 25 , "gain": 16.6440125, "cover": 530.399902, "children": [
{ "nodeid": 25, "leaf": -0.0616534166 , "cover": 14.3662834 },
{ "nodeid": 26, "leaf": 0.152962342 , "cover": 516.033569 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0326637626, "yes": 13, "no": 14, "missing": 13 , "gain": 13.1442871, "cover": 1433.83264, "children": [
{ "nodeid": 13, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 646, "yes": 27, "no": 28, "missing": 27 , "gain": 10.0149536, "cover": 456.799316, "children": [
{ "nodeid": 27, "leaf": 0.110745504 , "cover": 137.284302 },
{ "nodeid": 28, "leaf": 0.177099109 , "cover": 319.515015 }
]},
{ "nodeid": 14, "leaf": 0.199839547 , "cover": 977.033264 }
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0135270227, "yes": 1, "no": 2, "missing": 1 , "gain": 1030.56445, "cover": 95897.3203, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0115955435, "yes": 3, "no": 4, "missing": 3 , "gain": 880.868042, "cover": 91884.3906, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -14, "yes": 7, "no": 8, "missing": 7 , "gain": 264.464294, "cover": 4573.29883, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.017362792, "yes": 15, "no": 16, "missing": 15 , "gain": 70.2630005, "cover": 1815.40186, "children": [
{ "nodeid": 15, "leaf": -0.177532956 , "cover": 1191.81592 },
{ "nodeid": 16, "leaf": -0.0944054425 , "cover": 623.585938 }
]},
{ "nodeid": 8, "depth": 3, "split": "pos_score_diff_start", "split_condition": -7, "yes": 17, "no": 18, "missing": 17 , "gain": 79.5177307, "cover": 2757.89697, "children": [
{ "nodeid": 17, "leaf": -0.0832923576 , "cover": 1436.3186 },
{ "nodeid": 18, "leaf": -0.0153099149 , "cover": 1321.57825 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 349.191772, "cover": 87311.0938, "children": [
{ "nodeid": 9, "depth": 3, "split": "pos_score_diff_start", "split_condition": -12, "yes": 19, "no": 20, "missing": 19 , "gain": 232.69812, "cover": 43675.6094, "children": [
{ "nodeid": 19, "leaf": -0.0676017255 , "cover": 2852.97046 },
{ "nodeid": 20, "leaf": -0.00853010546 , "cover": 40822.6367 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_score_diff_start", "split_condition": 8, "yes": 21, "no": 22, "missing": 21 , "gain": 206.257477, "cover": 43635.4844, "children": [
{ "nodeid": 21, "leaf": 0.00904218014 , "cover": 40443.7344 },
{ "nodeid": 22, "leaf": 0.0618448146 , "cover": 3191.75073 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 15, "yes": 5, "no": 6, "missing": 5 , "gain": 254.808289, "cover": 4012.93042, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0408424549, "yes": 11, "no": 12, "missing": 11 , "gain": 105.813599, "cover": 2805.49658, "children": [
{ "nodeid": 11, "depth": 3, "split": "TimeSecsRem", "split_condition": 65, "yes": 23, "no": 24, "missing": 23 , "gain": 61.7759628, "cover": 1941.23621, "children": [
{ "nodeid": 23, "leaf": -0.0997297391 , "cover": 117.538643 },
{ "nodeid": 24, "leaf": 0.0493159257 , "cover": 1823.69751 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_score_diff_start", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 117.04361, "cover": 864.260315, "children": [
{ "nodeid": 25, "leaf": -0.0264921729 , "cover": 165.919586 },
{ "nodeid": 26, "leaf": 0.160208344 , "cover": 698.340759 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 22, "yes": 13, "no": 14, "missing": 13 , "gain": 16.8945923, "cover": 1207.43396, "children": [
{ "nodeid": 13, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0236809291, "yes": 27, "no": 28, "missing": 27 , "gain": 16.2085724, "cover": 461.007507, "children": [
{ "nodeid": 27, "leaf": 0.108705901 , "cover": 241.971527 },
{ "nodeid": 28, "leaf": 0.184844732 , "cover": 219.03598 }
]},
{ "nodeid": 14, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 29, "no": 30, "missing": 29 , "gain": 1.98773193, "cover": 746.426453, "children": [
{ "nodeid": 29, "leaf": 0.173168048 , "cover": 188.33992 },
{ "nodeid": 30, "leaf": 0.201986387 , "cover": 558.086548 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0228957534, "yes": 1, "no": 2, "missing": 1 , "gain": 744.355225, "cover": 94877.5625, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0199018177, "yes": 3, "no": 4, "missing": 3 , "gain": 593.869995, "cover": 92835.1016, "children": [
{ "nodeid": 3, "depth": 2, "split": "adj_TimeSecsRem", "split_condition": 260, "yes": 7, "no": 8, "missing": 7 , "gain": 86.7543335, "cover": 2393.72949, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0774310082, "yes": 15, "no": 16, "missing": 15 , "gain": 141.674652, "cover": 1311.46875, "children": [
{ "nodeid": 15, "leaf": -0.145720467 , "cover": 533.978271 },
{ "nodeid": 16, "leaf": -0.0119807245 , "cover": 777.490479 }
]},
{ "nodeid": 8, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.036580734, "yes": 17, "no": 18, "missing": 17 , "gain": 34.6342773, "cover": 1082.26074, "children": [
{ "nodeid": 17, "leaf": -0.191650197 , "cover": 382.269775 },
{ "nodeid": 18, "leaf": -0.116327822 , "cover": 699.990906 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "yards_to_goal", "split_condition": 24, "yes": 9, "no": 10, "missing": 9 , "gain": 377.856201, "cover": 90441.375, "children": [
{ "nodeid": 9, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 19, "no": 20, "missing": 19 , "gain": 65.5508118, "cover": 13931.9746, "children": [
{ "nodeid": 19, "leaf": 0.0158148613 , "cover": 6721.63477 },
{ "nodeid": 20, "leaf": 0.0432718918 , "cover": 7210.34033 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 21, "no": 22, "missing": 21 , "gain": 263.748474, "cover": 76509.3984, "children": [
{ "nodeid": 21, "leaf": -0.0172920804 , "cover": 39021.2188 },
{ "nodeid": 22, "leaf": 0.00619774545 , "cover": 37488.1797 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "adj_TimeSecsRem", "split_condition": 26, "yes": 5, "no": 6, "missing": 5 , "gain": 72.5808105, "cover": 2042.45984, "children": [
{ "nodeid": 5, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.117434509, "yes": 11, "no": 12, "missing": 11 , "gain": 50.0483398, "cover": 205.648834, "children": [
{ "nodeid": 11, "depth": 3, "split": "yards_to_goal", "split_condition": 32, "yes": 23, "no": 24, "missing": 23 , "gain": 36.1837845, "cover": 62.9589157, "children": [
{ "nodeid": 23, "leaf": 0.0955042541 , "cover": 17.9564285 },
{ "nodeid": 24, "leaf": -0.235051394 , "cover": 45.0024872 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 1.5, "yes": 25, "no": 26, "missing": 26 , "gain": 21.747448, "cover": 142.689926, "children": [
{ "nodeid": 25, "leaf": 0.00588769978 , "cover": 83.5981903 },
{ "nodeid": 26, "leaf": 0.163701192 , "cover": 59.091732 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0624713488, "yes": 13, "no": 14, "missing": 13 , "gain": 65.9629517, "cover": 1836.81104, "children": [
{ "nodeid": 13, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 521, "yes": 27, "no": 28, "missing": 27 , "gain": 73.3831177, "cover": 1274.61353, "children": [
{ "nodeid": 27, "leaf": 0.0729907826 , "cover": 860.140381 },
{ "nodeid": 28, "leaf": 0.175528869 , "cover": 414.473114 }
]},
{ "nodeid": 14, "depth": 3, "split": "down", "split_condition": 3.5, "yes": 29, "no": 30, "missing": 29 , "gain": 1.18478394, "cover": 562.19751, "children": [
{ "nodeid": 29, "leaf": 0.193111897 , "cover": 493.516785 },
{ "nodeid": 30, "leaf": 0.156245247 , "cover": 68.6807175 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": 7, "yes": 1, "no": 2, "missing": 1 , "gain": 625.41864, "cover": 94501.0156, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -20, "yes": 3, "no": 4, "missing": 3 , "gain": 543.214966, "cover": 80584.8828, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -25, "yes": 7, "no": 8, "missing": 7 , "gain": 74.7875366, "cover": 1473.43567, "children": [
{ "nodeid": 7, "depth": 3, "split": "is_home", "split_condition": 1, "yes": 15, "no": 16, "missing": 15 , "gain": 6.93753052, "cover": 627.613953, "children": [
{ "nodeid": 15, "leaf": -0.192057118 , "cover": 462.782562 },
{ "nodeid": 16, "leaf": -0.141719624 , "cover": 164.83139 }
]},
{ "nodeid": 8, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0210996829, "yes": 17, "no": 18, "missing": 17 , "gain": 26.4853973, "cover": 845.821777, "children": [
{ "nodeid": 17, "leaf": -0.164213017 , "cover": 148.954315 },
{ "nodeid": 18, "leaf": -0.0712325945 , "cover": 696.867432 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 9, "no": 10, "missing": 9 , "gain": 241.830963, "cover": 79111.4453, "children": [
{ "nodeid": 9, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0297133867, "yes": 19, "no": 20, "missing": 19 , "gain": 201.449158, "cover": 19337.3223, "children": [
{ "nodeid": 19, "leaf": -0.0872107595 , "cover": 738.041931 },
{ "nodeid": 20, "leaf": 0.019263668 , "cover": 18599.2793 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 21, "no": 22, "missing": 22 , "gain": 251.953629, "cover": 59774.125, "children": [
{ "nodeid": 21, "leaf": -0.0376942009 , "cover": 11119.7471 },
{ "nodeid": 22, "leaf": -0.00432666391 , "cover": 48654.3789 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0174655132, "yes": 5, "no": 6, "missing": 5 , "gain": 395.613953, "cover": 13916.1338, "children": [
{ "nodeid": 5, "depth": 2, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 11, "no": 12, "missing": 11 , "gain": 163.059647, "cover": 12307.4424, "children": [
{ "nodeid": 11, "depth": 3, "split": "yards_to_goal", "split_condition": 77, "yes": 23, "no": 24, "missing": 23 , "gain": 83.767662, "cover": 3364.73193, "children": [
{ "nodeid": 23, "leaf": 0.00329585164 , "cover": 2838.62769 },
{ "nodeid": 24, "leaf": -0.0835202783 , "cover": 526.104126 }
]},
{ "nodeid": 12, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 25, "no": 26, "missing": 26 , "gain": 77.7082825, "cover": 8942.71094, "children": [
{ "nodeid": 25, "leaf": 0.077583842 , "cover": 1871.31799 },
{ "nodeid": 26, "leaf": 0.0317492709 , "cover": 7071.39258 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 15, "yes": 13, "no": 14, "missing": 13 , "gain": 66.7828369, "cover": 1608.69116, "children": [
{ "nodeid": 13, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0549927279, "yes": 27, "no": 28, "missing": 27 , "gain": 58.9700317, "cover": 892.049133, "children": [
{ "nodeid": 27, "leaf": 0.0660597607 , "cover": 668.645752 },
{ "nodeid": 28, "leaf": 0.184755251 , "cover": 223.403397 }
]},
{ "nodeid": 14, "depth": 3, "split": "pos_score_diff_start", "split_condition": 22, "yes": 29, "no": 30, "missing": 29 , "gain": 7.05407715, "cover": 716.64209, "children": [
{ "nodeid": 29, "leaf": 0.149391413 , "cover": 249.997696 },
{ "nodeid": 30, "leaf": 0.193227604 , "cover": 466.644379 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.00704894215, "yes": 1, "no": 2, "missing": 1 , "gain": 466.901031, "cover": 93634.625, "children": [
{ "nodeid": 1, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0431759804, "yes": 3, "no": 4, "missing": 3 , "gain": 101.024902, "cover": 7513.68652, "children": [
{ "nodeid": 3, "depth": 2, "split": "adj_TimeSecsRem", "split_condition": 103, "yes": 7, "no": 8, "missing": 7 , "gain": 99.6828003, "cover": 946.794189, "children": [
{ "nodeid": 7, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.099900797, "yes": 15, "no": 16, "missing": 15 , "gain": 96.1056519, "cover": 475.72583, "children": [
{ "nodeid": 15, "leaf": -0.120701186 , "cover": 274.164368 },
{ "nodeid": 16, "leaf": 0.0608618669 , "cover": 201.561462 }
]},
{ "nodeid": 8, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": -0.0583948269, "yes": 17, "no": 18, "missing": 17 , "gain": 4.42828369, "cover": 471.068329, "children": [
{ "nodeid": 17, "leaf": -0.19147864 , "cover": 268.479675 },
{ "nodeid": 18, "leaf": -0.149207816 , "cover": 202.588669 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "is_home", "split_condition": 1, "yes": 9, "no": 10, "missing": 9 , "gain": 91.3659973, "cover": 6566.89258, "children": [
{ "nodeid": 9, "depth": 3, "split": "adj_TimeSecsRem", "split_condition": 252, "yes": 19, "no": 20, "missing": 19 , "gain": 60.6423035, "cover": 3654.21582, "children": [
{ "nodeid": 19, "leaf": 0.0181323979 , "cover": 360.374786 },
{ "nodeid": 20, "leaf": -0.0682363063 , "cover": 3293.84106 }
]},
{ "nodeid": 10, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 21, "no": 22, "missing": 21 , "gain": 35.5017738, "cover": 2912.67651, "children": [
{ "nodeid": 21, "leaf": -0.0341522209 , "cover": 1466.021 },
{ "nodeid": 22, "leaf": 0.00999692362 , "cover": 1446.65564 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.026323989, "yes": 5, "no": 6, "missing": 5 , "gain": 402.705994, "cover": 86120.9375, "children": [
{ "nodeid": 5, "depth": 2, "split": "down", "split_condition": 2.5, "yes": 11, "no": 12, "missing": 11 , "gain": 261.96228, "cover": 84639.875, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 182.277969, "cover": 60621.3398, "children": [
{ "nodeid": 23, "leaf": -0.00100628485 , "cover": 31039.7773 },
{ "nodeid": 24, "leaf": 0.0209336635 , "cover": 29581.5645 }
]},
{ "nodeid": 12, "depth": 3, "split": "yards_to_goal", "split_condition": 70, "yes": 25, "no": 26, "missing": 25 , "gain": 111.324844, "cover": 24018.5332, "children": [
{ "nodeid": 25, "leaf": -0.007006892 , "cover": 17886.8965 },
{ "nodeid": 26, "leaf": -0.0382335186 , "cover": 6131.63623 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "adj_TimeSecsRem", "split_condition": 27, "yes": 13, "no": 14, "missing": 13 , "gain": 62.3760376, "cover": 1481.06311, "children": [
{ "nodeid": 13, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.134818405, "yes": 27, "no": 28, "missing": 27 , "gain": 28.1638508, "cover": 201.735031, "children": [
{ "nodeid": 27, "leaf": -0.0919694528 , "cover": 74.9860153 },
{ "nodeid": 28, "leaf": 0.0617989413 , "cover": 126.749016 }
]},
{ "nodeid": 14, "depth": 3, "split": "ExpScoreDiff_Time_Ratio", "split_condition": 0.0673252791, "yes": 29, "no": 30, "missing": 29 , "gain": 47.4657593, "cover": 1279.32812, "children": [
{ "nodeid": 29, "leaf": 0.0993459597 , "cover": 908.704529 },
{ "nodeid": 30, "leaf": 0.184519097 , "cover": 370.623566 }
]}
]}
]}
]},
{ "nodeid": 0, "depth": 0, "split": "pos_score_diff_start", "split_condition": -6, "yes": 1, "no": 2, "missing": 1 , "gain": 474.690948, "cover": 93397.9844, "children": [
{ "nodeid": 1, "depth": 1, "split": "pos_score_diff_start", "split_condition": -25, "yes": 3, "no": 4, "missing": 3 , "gain": 269.491791, "cover": 24293.2598, "children": [
{ "nodeid": 3, "depth": 2, "split": "pos_score_diff_start", "split_condition": -34, "yes": 7, "no": 8, "missing": 7 , "gain": 6.27612305, "cover": 482.964294, "children": [
{ "nodeid": 7, "leaf": -0.200909838 , "cover": 193.544601 },
{ "nodeid": 8, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 15, "no": 16, "missing": 15 , "gain": 9.86480713, "cover": 289.419708, "children": [
{ "nodeid": 15, "leaf": -0.107884072 , "cover": 124.795319 },
{ "nodeid": 16, "leaf": -0.184307903 , "cover": 164.624374 }
]}
]},
{ "nodeid": 4, "depth": 2, "split": "pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 9, "no": 10, "missing": 10 , "gain": 116.508148, "cover": 23810.2969, "children": [
{ "nodeid": 9, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 1.5, "yes": 17, "no": 18, "missing": 18 , "gain": 64.7383728, "cover": 6458.82129, "children": [
{ "nodeid": 17, "leaf": 0.00567038963 , "cover": 901.135193 },
{ "nodeid": 18, "leaf": -0.0521120019 , "cover": 5557.68652 }
]},
{ "nodeid": 10, "depth": 3, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 19, "no": 20, "missing": 20 , "gain": 130.539825, "cover": 17351.4746, "children": [
{ "nodeid": 19, "leaf": 0.0214374214 , "cover": 3579.5481 },
{ "nodeid": 20, "leaf": -0.021428626 , "cover": 13771.9268 }
]}
]}
]},
{ "nodeid": 2, "depth": 1, "split": "pos_score_diff_start", "split_condition": 19, "yes": 5, "no": 6, "missing": 5 , "gain": 410.533966, "cover": 69104.7188, "children": [
{ "nodeid": 5, "depth": 2, "split": "def_pos_team_timeouts_rem_before", "split_condition": 2.5, "yes": 11, "no": 12, "missing": 12 , "gain": 174.294907, "cover": 68283.2344, "children": [
{ "nodeid": 11, "depth": 3, "split": "pos_score_diff_start", "split_condition": 8, "yes": 21, "no": 22, "missing": 21 , "gain": 106.795273, "cover": 16530.8906, "children": [
{ "nodeid": 21, "leaf": 0.0187916998 , "cover": 14646.0488 },
{ "nodeid": 22, "leaf": 0.0693605915 , "cover": 1884.84119 }
]},
{ "nodeid": 12, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 23, "no": 24, "missing": 23 , "gain": 130.661331, "cover": 51752.3477, "children": [
{ "nodeid": 23, "leaf": -0.00819675904 , "cover": 28240.7344 },
{ "nodeid": 24, "leaf": 0.0119860163 , "cover": 23511.6133 }
]}
]},
{ "nodeid": 6, "depth": 2, "split": "pos_score_diff_start", "split_condition": 22, "yes": 13, "no": 14, "missing": 13 , "gain": 28.5027161, "cover": 821.483398, "children": [
{ "nodeid": 13, "depth": 3, "split": "pos_team_receives_2H_kickoff", "split_condition": 1, "yes": 25, "no": 26, "missing": 25 , "gain": 44.4462509, "cover": 331.309814, "children": [
{ "nodeid": 25, "leaf": 0.172001109 , "cover": 174.807053 },
{ "nodeid": 26, "leaf": 0.0252785441 , "cover": 156.502747 }
]},