-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbikes
2333 lines (2333 loc) · 127 KB
/
bikes
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=<temp ≤ 0.432<br/>mse = 3665701.549<br/>samples = 584<br/>value = 4560.978>, fillcolor="#e581397f"] ;
1 [label=<year ≤ 0.5<br/>mse = 2298077.322<br/>samples = 229<br/>value = 3069.393>, fillcolor="#e5813951"] ;
0 -> 1 [labeldistance=2.5, labelangle=45, headlabel="True"] ;
2 [label=<season ≤ 3.0<br/>mse = 1158115.31<br/>samples = 113<br/>value = 2216.23>, fillcolor="#e5813937"] ;
1 -> 2 ;
3 [label=<month ≤ 1.5<br/>mse = 387531.597<br/>samples = 79<br/>value = 1661.152>, fillcolor="#e5813926"] ;
2 -> 3 ;
4 [label=<humidity ≤ 0.634<br/>mse = 149140.9<br/>samples = 27<br/>value = 1209.63>, fillcolor="#e5813918"] ;
3 -> 4 ;
5 [label=<workingday ≤ 0.5<br/>mse = 103928.139<br/>samples = 18<br/>value = 1346.833>, fillcolor="#e581391c"] ;
4 -> 5 ;
6 [label=<temp ≤ 0.204<br/>mse = 18761.102<br/>samples = 7<br/>value = 1028.571>, fillcolor="#e5813912"] ;
5 -> 6 ;
7 [label=<windspeed ≤ 0.314<br/>mse = 4244.24<br/>samples = 5<br/>value = 949.6>, fillcolor="#e5813910"] ;
6 -> 7 ;
8 [label=<windspeed ≤ 0.257<br/>mse = 217.25<br/>samples = 4<br/>value = 981.5>, fillcolor="#e5813911"] ;
7 -> 8 ;
9 [label=<temp ≤ 0.136<br/>mse = 64.667<br/>samples = 3<br/>value = 989.0>, fillcolor="#e5813911"] ;
8 -> 9 ;
10 [label=<weekday ≤ 3.0<br/>mse = 6.25<br/>samples = 2<br/>value = 983.5>, fillcolor="#e5813911"] ;
9 -> 10 ;
11 [label=<mse = 0.0<br/>samples = 1<br/>value = 986.0>, fillcolor="#e5813911"] ;
10 -> 11 ;
12 [label=<mse = 0.0<br/>samples = 1<br/>value = 981.0>, fillcolor="#e5813911"] ;
10 -> 12 ;
13 [label=<mse = 0.0<br/>samples = 1<br/>value = 1000.0>, fillcolor="#e5813912"] ;
9 -> 13 ;
14 [label=<mse = 0.0<br/>samples = 1<br/>value = 959.0>, fillcolor="#e5813910"] ;
8 -> 14 ;
15 [label=<mse = 0.0<br/>samples = 1<br/>value = 822.0>, fillcolor="#e581390c"] ;
7 -> 15 ;
16 [label=<temp ≤ 0.233<br/>mse = 484.0<br/>samples = 2<br/>value = 1226.0>, fillcolor="#e5813918"] ;
6 -> 16 ;
17 [label=<mse = 0.0<br/>samples = 1<br/>value = 1204.0>, fillcolor="#e5813918"] ;
16 -> 17 ;
18 [label=<mse = 0.0<br/>samples = 1<br/>value = 1248.0>, fillcolor="#e5813919"] ;
16 -> 18 ;
19 [label=<temp ≤ 0.214<br/>mse = 52649.14<br/>samples = 11<br/>value = 1549.364>, fillcolor="#e5813922"] ;
5 -> 19 ;
20 [label=<temp ≤ 0.175<br/>mse = 18861.984<br/>samples = 8<br/>value = 1441.375>, fillcolor="#e581391f"] ;
19 -> 20 ;
21 [label=<temp ≤ 0.169<br/>mse = 10584.25<br/>samples = 4<br/>value = 1327.5>, fillcolor="#e581391c"] ;
20 -> 21 ;
22 [label=<weekday ≤ 2.5<br/>mse = 1938.889<br/>samples = 3<br/>value = 1382.667>, fillcolor="#e581391d"] ;
21 -> 22 ;
23 [label=<mse = 0.0<br/>samples = 1<br/>value = 1321.0>, fillcolor="#e581391b"] ;
22 -> 23 ;
24 [label=<humidity ≤ 0.504<br/>mse = 56.25<br/>samples = 2<br/>value = 1413.5>, fillcolor="#e581391e"] ;
22 -> 24 ;
25 [label=<mse = 0.0<br/>samples = 1<br/>value = 1406.0>, fillcolor="#e581391e"] ;
24 -> 25 ;
26 [label=<mse = 0.0<br/>samples = 1<br/>value = 1421.0>, fillcolor="#e581391e"] ;
24 -> 26 ;
27 [label=<mse = 0.0<br/>samples = 1<br/>value = 1162.0>, fillcolor="#e5813917"] ;
21 -> 27 ;
28 [label=<windspeed ≤ 0.125<br/>mse = 1204.688<br/>samples = 4<br/>value = 1555.25>, fillcolor="#e5813923"] ;
20 -> 28 ;
29 [label=<mse = 0.0<br/>samples = 1<br/>value = 1606.0>, fillcolor="#e5813924"] ;
28 -> 29 ;
30 [label=<weather ≤ 1.5<br/>mse = 461.556<br/>samples = 3<br/>value = 1538.333>, fillcolor="#e5813922"] ;
28 -> 30 ;
31 [label=<humidity ≤ 0.524<br/>mse = 90.25<br/>samples = 2<br/>value = 1552.5>, fillcolor="#e5813923"] ;
30 -> 31 ;
32 [label=<mse = 0.0<br/>samples = 1<br/>value = 1543.0>, fillcolor="#e5813922"] ;
31 -> 32 ;
33 [label=<mse = 0.0<br/>samples = 1<br/>value = 1562.0>, fillcolor="#e5813923"] ;
31 -> 33 ;
34 [label=<mse = 0.0<br/>samples = 1<br/>value = 1510.0>, fillcolor="#e5813921"] ;
30 -> 34 ;
35 [label=<weather ≤ 1.5<br/>mse = 28724.222<br/>samples = 3<br/>value = 1837.333>, fillcolor="#e581392b"] ;
19 -> 35 ;
36 [label=<mse = 0.0<br/>samples = 1<br/>value = 1600.0>, fillcolor="#e5813924"] ;
35 -> 36 ;
37 [label=<temp ≤ 0.243<br/>mse = 841.0<br/>samples = 2<br/>value = 1956.0>, fillcolor="#e581392f"] ;
35 -> 37 ;
38 [label=<mse = 0.0<br/>samples = 1<br/>value = 1985.0>, fillcolor="#e5813930"] ;
37 -> 38 ;
39 [label=<mse = 0.0<br/>samples = 1<br/>value = 1927.0>, fillcolor="#e581392e"] ;
37 -> 39 ;
40 [label=<humidity ≤ 0.834<br/>mse = 126617.284<br/>samples = 9<br/>value = 935.222>, fillcolor="#e5813910"] ;
4 -> 40 ;
41 [label=<temp ≤ 0.196<br/>mse = 117909.959<br/>samples = 7<br/>value = 1032.571>, fillcolor="#e5813913"] ;
40 -> 41 ;
42 [label=<mse = 0.0<br/>samples = 1<br/>value = 431.0>, fillcolor="#e5813900"] ;
41 -> 42 ;
43 [label=<workingday ≤ 0.5<br/>mse = 67194.472<br/>samples = 6<br/>value = 1132.833>, fillcolor="#e5813916"] ;
41 -> 43 ;
44 [label=<windspeed ≤ 0.204<br/>mse = 14636.5<br/>samples = 4<br/>value = 995.0>, fillcolor="#e5813911"] ;
43 -> 44 ;
45 [label=<temp ≤ 0.28<br/>mse = 2788.222<br/>samples = 3<br/>value = 1059.667>, fillcolor="#e5813913"] ;
44 -> 45 ;
46 [label=<temp ≤ 0.207<br/>mse = 1.0<br/>samples = 2<br/>value = 1097.0>, fillcolor="#e5813915"] ;
45 -> 46 ;
47 [label=<mse = 0.0<br/>samples = 1<br/>value = 1098.0>, fillcolor="#e5813915"] ;
46 -> 47 ;
48 [label=<mse = 0.0<br/>samples = 1<br/>value = 1096.0>, fillcolor="#e5813914"] ;
46 -> 48 ;
49 [label=<mse = 0.0<br/>samples = 1<br/>value = 985.0>, fillcolor="#e5813911"] ;
45 -> 49 ;
50 [label=<mse = 0.0<br/>samples = 1<br/>value = 801.0>, fillcolor="#e581390b"] ;
44 -> 50 ;
51 [label=<windspeed ≤ 0.166<br/>mse = 58322.25<br/>samples = 2<br/>value = 1408.5>, fillcolor="#e581391e"] ;
43 -> 51 ;
52 [label=<mse = 0.0<br/>samples = 1<br/>value = 1167.0>, fillcolor="#e5813917"] ;
51 -> 52 ;
53 [label=<mse = 0.0<br/>samples = 1<br/>value = 1650.0>, fillcolor="#e5813926"] ;
51 -> 53 ;
54 [label=<weather ≤ 2.5<br/>mse = 7832.25<br/>samples = 2<br/>value = 594.5>, fillcolor="#e5813905"] ;
40 -> 54 ;
55 [label=<mse = 0.0<br/>samples = 1<br/>value = 683.0>, fillcolor="#e5813908"] ;
54 -> 55 ;
56 [label=<mse = 0.0<br/>samples = 1<br/>value = 506.0>, fillcolor="#e5813902"] ;
54 -> 56 ;
57 [label=<humidity ≤ 0.883<br/>mse = 350490.472<br/>samples = 52<br/>value = 1895.596>, fillcolor="#e581392d"] ;
3 -> 57 ;
58 [label=<temp ≤ 0.34<br/>mse = 297019.645<br/>samples = 48<br/>value = 1968.354>, fillcolor="#e581392f"] ;
57 -> 58 ;
59 [label=<weekday ≤ 1.5<br/>mse = 167908.371<br/>samples = 33<br/>value = 1803.485>, fillcolor="#e581392a"] ;
58 -> 59 ;
60 [label=<month ≤ 7.5<br/>mse = 115966.859<br/>samples = 8<br/>value = 1450.875>, fillcolor="#e581391f"] ;
59 -> 60 ;
61 [label=<holiday ≤ 0.5<br/>mse = 51525.556<br/>samples = 6<br/>value = 1589.333>, fillcolor="#e5813924"] ;
60 -> 61 ;
62 [label=<temp ≤ 0.286<br/>mse = 5995.76<br/>samples = 5<br/>value = 1685.8>, fillcolor="#e5813927"] ;
61 -> 62 ;
63 [label=<windspeed ≤ 0.204<br/>mse = 2724.667<br/>samples = 3<br/>value = 1739.0>, fillcolor="#e5813928"] ;
62 -> 63 ;
64 [label=<month ≤ 2.5<br/>mse = 90.25<br/>samples = 2<br/>value = 1702.5>, fillcolor="#e5813927"] ;
63 -> 64 ;
65 [label=<mse = 0.0<br/>samples = 1<br/>value = 1712.0>, fillcolor="#e5813927"] ;
64 -> 65 ;
66 [label=<mse = 0.0<br/>samples = 1<br/>value = 1693.0>, fillcolor="#e5813927"] ;
64 -> 66 ;
67 [label=<mse = 0.0<br/>samples = 1<br/>value = 1812.0>, fillcolor="#e581392b"] ;
63 -> 67 ;
68 [label=<windspeed ≤ 0.201<br/>mse = 289.0<br/>samples = 2<br/>value = 1606.0>, fillcolor="#e5813924"] ;
62 -> 68 ;
69 [label=<mse = 0.0<br/>samples = 1<br/>value = 1623.0>, fillcolor="#e5813925"] ;
68 -> 69 ;
70 [label=<mse = 0.0<br/>samples = 1<br/>value = 1589.0>, fillcolor="#e5813924"] ;
68 -> 70 ;
71 [label=<mse = 0.0<br/>samples = 1<br/>value = 1107.0>, fillcolor="#e5813915"] ;
61 -> 71 ;
72 [label=<windspeed ≤ 0.197<br/>mse = 79242.25<br/>samples = 2<br/>value = 1035.5>, fillcolor="#e5813913"] ;
60 -> 72 ;
73 [label=<mse = 0.0<br/>samples = 1<br/>value = 754.0>, fillcolor="#e581390a"] ;
72 -> 73 ;
74 [label=<mse = 0.0<br/>samples = 1<br/>value = 1317.0>, fillcolor="#e581391b"] ;
72 -> 74 ;
75 [label=<month ≤ 8.0<br/>mse = 132011.098<br/>samples = 25<br/>value = 1916.32>, fillcolor="#e581392e"] ;
59 -> 75 ;
76 [label=<temp ≤ 0.261<br/>mse = 70240.884<br/>samples = 22<br/>value = 1826.545>, fillcolor="#e581392b"] ;
75 -> 76 ;
77 [label=<windspeed ≤ 0.162<br/>mse = 21167.877<br/>samples = 9<br/>value = 1619.111>, fillcolor="#e5813925"] ;
76 -> 77 ;
78 [label=<humidity ≤ 0.465<br/>mse = 8262.889<br/>samples = 3<br/>value = 1790.333>, fillcolor="#e581392a"] ;
77 -> 78 ;
79 [label=<mse = 0.0<br/>samples = 1<br/>value = 1917.0>, fillcolor="#e581392e"] ;
78 -> 79 ;
80 [label=<windspeed ≤ 0.118<br/>mse = 361.0<br/>samples = 2<br/>value = 1727.0>, fillcolor="#e5813928"] ;
78 -> 80 ;
81 [label=<mse = 0.0<br/>samples = 1<br/>value = 1746.0>, fillcolor="#e5813928"] ;
80 -> 81 ;
82 [label=<mse = 0.0<br/>samples = 1<br/>value = 1708.0>, fillcolor="#e5813927"] ;
80 -> 82 ;
83 [label=<month ≤ 2.5<br/>mse = 5632.583<br/>samples = 6<br/>value = 1533.5>, fillcolor="#e5813922"] ;
77 -> 83 ;
84 [label=<windspeed ≤ 0.213<br/>mse = 1250.56<br/>samples = 5<br/>value = 1503.2>, fillcolor="#e5813921"] ;
83 -> 84 ;
85 [label=<windspeed ≤ 0.2<br/>mse = 121.0<br/>samples = 2<br/>value = 1461.0>, fillcolor="#e5813920"] ;
84 -> 85 ;
86 [label=<mse = 0.0<br/>samples = 1<br/>value = 1450.0>, fillcolor="#e581391f"] ;
85 -> 86 ;
87 [label=<mse = 0.0<br/>samples = 1<br/>value = 1472.0>, fillcolor="#e5813920"] ;
85 -> 87 ;
88 [label=<temp ≤ 0.183<br/>mse = 24.889<br/>samples = 3<br/>value = 1531.333>, fillcolor="#e5813922"] ;
84 -> 88 ;
89 [label=<mse = 0.0<br/>samples = 1<br/>value = 1538.0>, fillcolor="#e5813922"] ;
88 -> 89 ;
90 [label=<windspeed ≤ 0.313<br/>mse = 4.0<br/>samples = 2<br/>value = 1528.0>, fillcolor="#e5813922"] ;
88 -> 90 ;
91 [label=<mse = 0.0<br/>samples = 1<br/>value = 1526.0>, fillcolor="#e5813922"] ;
90 -> 91 ;
92 [label=<mse = 0.0<br/>samples = 1<br/>value = 1530.0>, fillcolor="#e5813922"] ;
90 -> 92 ;
93 [label=<mse = 0.0<br/>samples = 1<br/>value = 1685.0>, fillcolor="#e5813927"] ;
83 -> 93 ;
94 [label=<humidity ≤ 0.314<br/>mse = 53801.822<br/>samples = 13<br/>value = 1970.154>, fillcolor="#e581392f"] ;
76 -> 94 ;
95 [label=<mse = 0.0<br/>samples = 1<br/>value = 2425.0>, fillcolor="#e581393d"] ;
94 -> 95 ;
96 [label=<windspeed ≤ 0.179<br/>mse = 39608.188<br/>samples = 12<br/>value = 1932.25>, fillcolor="#e581392e"] ;
94 -> 96 ;
97 [label=<mse = 0.0<br/>samples = 1<br/>value = 1536.0>, fillcolor="#e5813922"] ;
96 -> 97 ;
98 [label=<humidity ≤ 0.693<br/>mse = 27637.289<br/>samples = 11<br/>value = 1968.273>, fillcolor="#e581392f"] ;
96 -> 98 ;
99 [label=<season ≤ 1.5<br/>mse = 22358.75<br/>samples = 8<br/>value = 2026.5>, fillcolor="#e5813931"] ;
98 -> 99 ;
100 [label=<temp ≤ 0.3<br/>mse = 11077.889<br/>samples = 6<br/>value = 1958.333>, fillcolor="#e581392f"] ;
99 -> 100 ;
101 [label=<windspeed ≤ 0.21<br/>mse = 4053.188<br/>samples = 4<br/>value = 1894.75>, fillcolor="#e581392d"] ;
100 -> 101 ;
102 [label=<weekday ≤ 5.5<br/>mse = 156.25<br/>samples = 2<br/>value = 1956.5>, fillcolor="#e581392f"] ;
101 -> 102 ;
103 [label=<mse = 0.0<br/>samples = 1<br/>value = 1944.0>, fillcolor="#e581392f"] ;
102 -> 103 ;
104 [label=<mse = 0.0<br/>samples = 1<br/>value = 1969.0>, fillcolor="#e581392f"] ;
102 -> 104 ;
105 [label=<temp ≤ 0.266<br/>mse = 324.0<br/>samples = 2<br/>value = 1833.0>, fillcolor="#e581392b"] ;
101 -> 105 ;
106 [label=<mse = 0.0<br/>samples = 1<br/>value = 1815.0>, fillcolor="#e581392b"] ;
105 -> 106 ;
107 [label=<mse = 0.0<br/>samples = 1<br/>value = 1851.0>, fillcolor="#e581392c"] ;
105 -> 107 ;
108 [label=<humidity ≤ 0.54<br/>mse = 870.25<br/>samples = 2<br/>value = 2085.5>, fillcolor="#e5813933"] ;
100 -> 108 ;
109 [label=<mse = 0.0<br/>samples = 1<br/>value = 2115.0>, fillcolor="#e5813934"] ;
108 -> 109 ;
110 [label=<mse = 0.0<br/>samples = 1<br/>value = 2056.0>, fillcolor="#e5813932"] ;
108 -> 110 ;
111 [label=<windspeed ≤ 0.214<br/>mse = 441.0<br/>samples = 2<br/>value = 2231.0>, fillcolor="#e5813937"] ;
99 -> 111 ;
112 [label=<mse = 0.0<br/>samples = 1<br/>value = 2252.0>, fillcolor="#e5813938"] ;
111 -> 112 ;
113 [label=<mse = 0.0<br/>samples = 1<br/>value = 2210.0>, fillcolor="#e5813937"] ;
111 -> 113 ;
114 [label=<month ≤ 3.5<br/>mse = 8562.667<br/>samples = 3<br/>value = 1813.0>, fillcolor="#e581392b"] ;
98 -> 114 ;
115 [label=<windspeed ≤ 0.232<br/>mse = 169.0<br/>samples = 2<br/>value = 1878.0>, fillcolor="#e581392d"] ;
114 -> 115 ;
116 [label=<mse = 0.0<br/>samples = 1<br/>value = 1891.0>, fillcolor="#e581392d"] ;
115 -> 116 ;
117 [label=<mse = 0.0<br/>samples = 1<br/>value = 1865.0>, fillcolor="#e581392c"] ;
115 -> 117 ;
118 [label=<mse = 0.0<br/>samples = 1<br/>value = 1683.0>, fillcolor="#e5813927"] ;
114 -> 118 ;
119 [label=<temp ≤ 0.305<br/>mse = 92469.556<br/>samples = 3<br/>value = 2574.667>, fillcolor="#e5813942"] ;
75 -> 119 ;
120 [label=<weekday ≤ 3.5<br/>mse = 3660.25<br/>samples = 2<br/>value = 2362.5>, fillcolor="#e581393b"] ;
119 -> 120 ;
121 [label=<mse = 0.0<br/>samples = 1<br/>value = 2302.0>, fillcolor="#e581393a"] ;
120 -> 121 ;
122 [label=<mse = 0.0<br/>samples = 1<br/>value = 2423.0>, fillcolor="#e581393d"] ;
120 -> 122 ;
123 [label=<mse = 0.0<br/>samples = 1<br/>value = 2999.0>, fillcolor="#e581394f"] ;
119 -> 123 ;
124 [label=<weather ≤ 2.5<br/>mse = 389703.929<br/>samples = 15<br/>value = 2331.067>, fillcolor="#e581393a"] ;
58 -> 124 ;
125 [label=<windspeed ≤ 0.28<br/>mse = 194262.495<br/>samples = 14<br/>value = 2453.071>, fillcolor="#e581393e"] ;
124 -> 125 ;
126 [label=<humidity ≤ 0.504<br/>mse = 94501.537<br/>samples = 11<br/>value = 2588.091>, fillcolor="#e5813942"] ;
125 -> 126 ;
127 [label=<workingday ≤ 0.5<br/>mse = 48620.25<br/>samples = 2<br/>value = 3028.5>, fillcolor="#e5813950"] ;
126 -> 127 ;
128 [label=<mse = 0.0<br/>samples = 1<br/>value = 3249.0>, fillcolor="#e5813957"] ;
127 -> 128 ;
129 [label=<mse = 0.0<br/>samples = 1<br/>value = 2808.0>, fillcolor="#e5813949"] ;
127 -> 129 ;
130 [label=<temp ≤ 0.414<br/>mse = 52016.84<br/>samples = 9<br/>value = 2490.222>, fillcolor="#e581393f"] ;
126 -> 130 ;
131 [label=<workingday ≤ 0.5<br/>mse = 16120.472<br/>samples = 6<br/>value = 2352.167>, fillcolor="#e581393b"] ;
130 -> 131 ;
132 [label=<weekday ≤ 3.0<br/>mse = 1055.688<br/>samples = 4<br/>value = 2439.75>, fillcolor="#e581393e"] ;
131 -> 132 ;
133 [label=<humidity ≤ 0.604<br/>mse = 56.25<br/>samples = 2<br/>value = 2409.5>, fillcolor="#e581393d"] ;
132 -> 133 ;
134 [label=<mse = 0.0<br/>samples = 1<br/>value = 2417.0>, fillcolor="#e581393d"] ;
133 -> 134 ;
135 [label=<mse = 0.0<br/>samples = 1<br/>value = 2402.0>, fillcolor="#e581393d"] ;
133 -> 135 ;
136 [label=<weather ≤ 1.5<br/>mse = 225.0<br/>samples = 2<br/>value = 2470.0>, fillcolor="#e581393f"] ;
132 -> 136 ;
137 [label=<mse = 0.0<br/>samples = 1<br/>value = 2485.0>, fillcolor="#e581393f"] ;
136 -> 137 ;
138 [label=<mse = 0.0<br/>samples = 1<br/>value = 2455.0>, fillcolor="#e581393e"] ;
136 -> 138 ;
139 [label=<season ≤ 1.5<br/>mse = 225.0<br/>samples = 2<br/>value = 2177.0>, fillcolor="#e5813936"] ;
131 -> 139 ;
140 [label=<mse = 0.0<br/>samples = 1<br/>value = 2192.0>, fillcolor="#e5813936"] ;
139 -> 140 ;
141 [label=<mse = 0.0<br/>samples = 1<br/>value = 2162.0>, fillcolor="#e5813935"] ;
139 -> 141 ;
142 [label=<windspeed ≤ 0.178<br/>mse = 9453.556<br/>samples = 3<br/>value = 2766.333>, fillcolor="#e5813948"] ;
130 -> 142 ;
143 [label=<mse = 0.0<br/>samples = 1<br/>value = 2895.0>, fillcolor="#e581394c"] ;
142 -> 143 ;
144 [label=<windspeed ≤ 0.215<br/>mse = 1764.0<br/>samples = 2<br/>value = 2702.0>, fillcolor="#e5813946"] ;
142 -> 144 ;
145 [label=<mse = 0.0<br/>samples = 1<br/>value = 2744.0>, fillcolor="#e5813947"] ;
144 -> 145 ;
146 [label=<mse = 0.0<br/>samples = 1<br/>value = 2660.0>, fillcolor="#e5813945"] ;
144 -> 146 ;
147 [label=<month ≤ 4.5<br/>mse = 248112.667<br/>samples = 3<br/>value = 1958.0>, fillcolor="#e581392f"] ;
125 -> 147 ;
148 [label=<season ≤ 1.5<br/>mse = 30450.25<br/>samples = 2<br/>value = 1620.5>, fillcolor="#e5813925"] ;
147 -> 148 ;
149 [label=<mse = 0.0<br/>samples = 1<br/>value = 1446.0>, fillcolor="#e581391f"] ;
148 -> 149 ;
150 [label=<mse = 0.0<br/>samples = 1<br/>value = 1795.0>, fillcolor="#e581392a"] ;
148 -> 150 ;
151 [label=<mse = 0.0<br/>samples = 1<br/>value = 2633.0>, fillcolor="#e5813944"] ;
147 -> 151 ;
152 [label=<mse = 0.0<br/>samples = 1<br/>value = 623.0>, fillcolor="#e5813906"] ;
124 -> 152 ;
153 [label=<workingday ≤ 0.5<br/>mse = 166318.75<br/>samples = 4<br/>value = 1022.5>, fillcolor="#e5813912"] ;
57 -> 153 ;
154 [label=<month ≤ 2.5<br/>mse = 26688.889<br/>samples = 3<br/>value = 801.667>, fillcolor="#e581390b"] ;
153 -> 154 ;
155 [label=<mse = 0.0<br/>samples = 1<br/>value = 1005.0>, fillcolor="#e5813912"] ;
154 -> 155 ;
156 [label=<humidity ≤ 0.918<br/>mse = 9025.0<br/>samples = 2<br/>value = 700.0>, fillcolor="#e5813908"] ;
154 -> 156 ;
157 [label=<mse = 0.0<br/>samples = 1<br/>value = 795.0>, fillcolor="#e581390b"] ;
156 -> 157 ;
158 [label=<mse = 0.0<br/>samples = 1<br/>value = 605.0>, fillcolor="#e5813905"] ;
156 -> 158 ;
159 [label=<mse = 0.0<br/>samples = 1<br/>value = 1685.0>, fillcolor="#e5813927"] ;
153 -> 159 ;
160 [label=<humidity ≤ 0.848<br/>mse = 569251.852<br/>samples = 34<br/>value = 3505.971>, fillcolor="#e581395f"] ;
2 -> 160 ;
161 [label=<windspeed ≤ 0.282<br/>mse = 210831.39<br/>samples = 32<br/>value = 3655.281>, fillcolor="#e5813963"] ;
160 -> 161 ;
162 [label=<temp ≤ 0.39<br/>mse = 158954.712<br/>samples = 30<br/>value = 3716.233>, fillcolor="#e5813965"] ;
161 -> 162 ;
163 [label=<humidity ≤ 0.784<br/>mse = 106913.265<br/>samples = 21<br/>value = 3539.143>, fillcolor="#e5813960"] ;
162 -> 163 ;
164 [label=<temp ≤ 0.279<br/>mse = 74351.352<br/>samples = 19<br/>value = 3603.737>, fillcolor="#e5813962"] ;
163 -> 164 ;
165 [label=<temp ≤ 0.275<br/>mse = 5274.75<br/>samples = 4<br/>value = 3303.5>, fillcolor="#e5813958"] ;
164 -> 165 ;
166 [label=<humidity ≤ 0.495<br/>mse = 1307.556<br/>samples = 3<br/>value = 3341.333>, fillcolor="#e581395a"] ;
165 -> 166 ;
167 [label=<mse = 0.0<br/>samples = 1<br/>value = 3392.0>, fillcolor="#e581395b"] ;
166 -> 167 ;
168 [label=<humidity ≤ 0.625<br/>mse = 36.0<br/>samples = 2<br/>value = 3316.0>, fillcolor="#e5813959"] ;
166 -> 168 ;
169 [label=<mse = 0.0<br/>samples = 1<br/>value = 3322.0>, fillcolor="#e5813959"] ;
168 -> 169 ;
170 [label=<mse = 0.0<br/>samples = 1<br/>value = 3310.0>, fillcolor="#e5813959"] ;
168 -> 170 ;
171 [label=<mse = 0.0<br/>samples = 1<br/>value = 3190.0>, fillcolor="#e5813955"] ;
165 -> 171 ;
172 [label=<temp ≤ 0.377<br/>mse = 62323.76<br/>samples = 15<br/>value = 3683.8>, fillcolor="#e5813964"] ;
164 -> 172 ;
173 [label=<temp ≤ 0.375<br/>mse = 50262.84<br/>samples = 13<br/>value = 3640.077>, fillcolor="#e5813963"] ;
172 -> 173 ;
174 [label=<weekday ≤ 5.5<br/>mse = 24906.021<br/>samples = 12<br/>value = 3687.75>, fillcolor="#e5813964"] ;
173 -> 174 ;
175 [label=<humidity ≤ 0.755<br/>mse = 7319.609<br/>samples = 8<br/>value = 3622.875>, fillcolor="#e5813962"] ;
174 -> 175 ;
176 [label=<temp ≤ 0.298<br/>mse = 5261.673<br/>samples = 7<br/>value = 3642.571>, fillcolor="#e5813963"] ;
175 -> 176 ;
177 [label=<mse = 0.0<br/>samples = 1<br/>value = 3523.0>, fillcolor="#e581395f"] ;
176 -> 177 ;
178 [label=<temp ≤ 0.321<br/>mse = 3358.583<br/>samples = 6<br/>value = 3662.5>, fillcolor="#e5813963"] ;
176 -> 178 ;
179 [label=<humidity ≤ 0.594<br/>mse = 42.25<br/>samples = 2<br/>value = 3733.5>, fillcolor="#e5813966"] ;
178 -> 179 ;
180 [label=<mse = 0.0<br/>samples = 1<br/>value = 3727.0>, fillcolor="#e5813965"] ;
179 -> 180 ;
181 [label=<mse = 0.0<br/>samples = 1<br/>value = 3740.0>, fillcolor="#e5813966"] ;
179 -> 181 ;
182 [label=<humidity ≤ 0.658<br/>mse = 1236.0<br/>samples = 4<br/>value = 3627.0>, fillcolor="#e5813962"] ;
178 -> 182 ;
183 [label=<weekday ≤ 4.0<br/>mse = 324.0<br/>samples = 2<br/>value = 3595.0>, fillcolor="#e5813961"] ;
182 -> 183 ;
184 [label=<mse = 0.0<br/>samples = 1<br/>value = 3613.0>, fillcolor="#e5813962"] ;
183 -> 184 ;
185 [label=<mse = 0.0<br/>samples = 1<br/>value = 3577.0>, fillcolor="#e5813961"] ;
183 -> 185 ;
186 [label=<weekday ≤ 0.5<br/>mse = 100.0<br/>samples = 2<br/>value = 3659.0>, fillcolor="#e5813963"] ;
182 -> 186 ;
187 [label=<mse = 0.0<br/>samples = 1<br/>value = 3649.0>, fillcolor="#e5813963"] ;
186 -> 187 ;
188 [label=<mse = 0.0<br/>samples = 1<br/>value = 3669.0>, fillcolor="#e5813964"] ;
186 -> 188 ;
189 [label=<mse = 0.0<br/>samples = 1<br/>value = 3485.0>, fillcolor="#e581395e"] ;
175 -> 189 ;
190 [label=<temp ≤ 0.343<br/>mse = 34826.25<br/>samples = 4<br/>value = 3817.5>, fillcolor="#e5813968"] ;
174 -> 190 ;
191 [label=<humidity ≤ 0.566<br/>mse = 18768.222<br/>samples = 3<br/>value = 3734.333>, fillcolor="#e5813966"] ;
190 -> 191 ;
192 [label=<humidity ≤ 0.511<br/>mse = 17292.25<br/>samples = 2<br/>value = 3794.5>, fillcolor="#e5813968"] ;
191 -> 192 ;
193 [label=<mse = 0.0<br/>samples = 1<br/>value = 3663.0>, fillcolor="#e5813964"] ;
192 -> 193 ;
194 [label=<mse = 0.0<br/>samples = 1<br/>value = 3926.0>, fillcolor="#e581396c"] ;
192 -> 194 ;
195 [label=<mse = 0.0<br/>samples = 1<br/>value = 3614.0>, fillcolor="#e5813962"] ;
191 -> 195 ;
196 [label=<mse = 0.0<br/>samples = 1<br/>value = 4067.0>, fillcolor="#e5813970"] ;
190 -> 196 ;
197 [label=<mse = 0.0<br/>samples = 1<br/>value = 3068.0>, fillcolor="#e5813951"] ;
173 -> 197 ;
198 [label=<weather ≤ 1.5<br/>mse = 47524.0<br/>samples = 2<br/>value = 3968.0>, fillcolor="#e581396d"] ;
172 -> 198 ;
199 [label=<mse = 0.0<br/>samples = 1<br/>value = 4186.0>, fillcolor="#e5813974"] ;
198 -> 199 ;
200 [label=<mse = 0.0<br/>samples = 1<br/>value = 3750.0>, fillcolor="#e5813966"] ;
198 -> 200 ;
201 [label=<temp ≤ 0.368<br/>mse = 56.25<br/>samples = 2<br/>value = 2925.5>, fillcolor="#e581394d"] ;
163 -> 201 ;
202 [label=<mse = 0.0<br/>samples = 1<br/>value = 2918.0>, fillcolor="#e581394d"] ;
201 -> 202 ;
203 [label=<mse = 0.0<br/>samples = 1<br/>value = 2933.0>, fillcolor="#e581394d"] ;
201 -> 203 ;
204 [label=<month ≤ 11.5<br/>mse = 36465.58<br/>samples = 9<br/>value = 4129.444>, fillcolor="#e5813972"] ;
162 -> 204 ;
205 [label=<temp ≤ 0.406<br/>mse = 16165.0<br/>samples = 8<br/>value = 4182.0>, fillcolor="#e5813973"] ;
204 -> 205 ;
206 [label=<weekday ≤ 1.5<br/>mse = 801.25<br/>samples = 4<br/>value = 4064.5>, fillcolor="#e5813970"] ;
205 -> 206 ;
207 [label=<mse = 0.0<br/>samples = 1<br/>value = 4035.0>, fillcolor="#e581396f"] ;
206 -> 207 ;
208 [label=<humidity ≤ 0.721<br/>mse = 681.556<br/>samples = 3<br/>value = 4074.333>, fillcolor="#e5813970"] ;
206 -> 208 ;
209 [label=<humidity ≤ 0.653<br/>mse = 121.0<br/>samples = 2<br/>value = 4057.0>, fillcolor="#e5813970"] ;
208 -> 209 ;
210 [label=<mse = 0.0<br/>samples = 1<br/>value = 4046.0>, fillcolor="#e581396f"] ;
209 -> 210 ;
211 [label=<mse = 0.0<br/>samples = 1<br/>value = 4068.0>, fillcolor="#e5813970"] ;
209 -> 211 ;
212 [label=<mse = 0.0<br/>samples = 1<br/>value = 4109.0>, fillcolor="#e5813971"] ;
208 -> 212 ;
213 [label=<windspeed ≤ 0.081<br/>mse = 3916.25<br/>samples = 4<br/>value = 4299.5>, fillcolor="#e5813977"] ;
205 -> 213 ;
214 [label=<mse = 0.0<br/>samples = 1<br/>value = 4205.0>, fillcolor="#e5813974"] ;
213 -> 214 ;
215 [label=<weekday ≤ 2.5<br/>mse = 1252.667<br/>samples = 3<br/>value = 4331.0>, fillcolor="#e5813978"] ;
213 -> 215 ;
216 [label=<mse = 0.0<br/>samples = 1<br/>value = 4381.0>, fillcolor="#e581397a"] ;
215 -> 216 ;
217 [label=<weekday ≤ 5.5<br/>mse = 4.0<br/>samples = 2<br/>value = 4306.0>, fillcolor="#e5813977"] ;
215 -> 217 ;
218 [label=<mse = 0.0<br/>samples = 1<br/>value = 4304.0>, fillcolor="#e5813977"] ;
217 -> 218 ;
219 [label=<mse = 0.0<br/>samples = 1<br/>value = 4308.0>, fillcolor="#e5813977"] ;
217 -> 219 ;
220 [label=<mse = 0.0<br/>samples = 1<br/>value = 3709.0>, fillcolor="#e5813965"] ;
204 -> 220 ;
221 [label=<workingday ≤ 0.5<br/>mse = 97344.0<br/>samples = 2<br/>value = 2741.0>, fillcolor="#e5813947"] ;
161 -> 221 ;
222 [label=<mse = 0.0<br/>samples = 1<br/>value = 2429.0>, fillcolor="#e581393e"] ;
221 -> 222 ;
223 [label=<mse = 0.0<br/>samples = 1<br/>value = 3053.0>, fillcolor="#e5813951"] ;
221 -> 223 ;
224 [label=<windspeed ≤ 0.235<br/>mse = 240100.0<br/>samples = 2<br/>value = 1117.0>, fillcolor="#e5813915"] ;
160 -> 224 ;
225 [label=<mse = 0.0<br/>samples = 1<br/>value = 1607.0>, fillcolor="#e5813924"] ;
224 -> 225 ;
226 [label=<mse = 0.0<br/>samples = 1<br/>value = 627.0>, fillcolor="#e5813906"] ;
224 -> 226 ;
227 [label=<temp ≤ 0.28<br/>mse = 2008770.75<br/>samples = 116<br/>value = 3900.491>, fillcolor="#e581396b"] ;
1 -> 227 ;
228 [label=<humidity ≤ 0.742<br/>mse = 887037.329<br/>samples = 30<br/>value = 2494.067>, fillcolor="#e5813940"] ;
227 -> 228 ;
229 [label=<workingday ≤ 0.5<br/>mse = 629385.66<br/>samples = 24<br/>value = 2767.083>, fillcolor="#e5813948"] ;
228 -> 229 ;
230 [label=<temp ≤ 0.279<br/>mse = 286768.544<br/>samples = 13<br/>value = 2372.615>, fillcolor="#e581393c"] ;
229 -> 230 ;
231 [label=<windspeed ≤ 0.392<br/>mse = 158628.01<br/>samples = 10<br/>value = 2163.7>, fillcolor="#e5813935"] ;
230 -> 231 ;
232 [label=<month ≤ 11.5<br/>mse = 109225.609<br/>samples = 8<br/>value = 2294.875>, fillcolor="#e5813939"] ;
231 -> 232 ;
233 [label=<windspeed ≤ 0.219<br/>mse = 82717.102<br/>samples = 7<br/>value = 2367.429>, fillcolor="#e581393c"] ;
232 -> 233 ;
234 [label=<temp ≤ 0.256<br/>mse = 53822.889<br/>samples = 3<br/>value = 2621.333>, fillcolor="#e5813943"] ;
233 -> 234 ;
235 [label=<humidity ≤ 0.463<br/>mse = 1190.25<br/>samples = 2<br/>value = 2458.5>, fillcolor="#e581393e"] ;
234 -> 235 ;
236 [label=<mse = 0.0<br/>samples = 1<br/>value = 2493.0>, fillcolor="#e581393f"] ;
235 -> 236 ;
237 [label=<mse = 0.0<br/>samples = 1<br/>value = 2424.0>, fillcolor="#e581393d"] ;
235 -> 237 ;
238 [label=<mse = 0.0<br/>samples = 1<br/>value = 2947.0>, fillcolor="#e581394d"] ;
234 -> 238 ;
239 [label=<holiday ≤ 0.5<br/>mse = 19774.0<br/>samples = 4<br/>value = 2177.0>, fillcolor="#e5813936"] ;
233 -> 239 ;
240 [label=<humidity ≤ 0.575<br/>mse = 3664.889<br/>samples = 3<br/>value = 2252.333>, fillcolor="#e5813938"] ;
239 -> 240 ;
241 [label=<season ≤ 2.5<br/>mse = 289.0<br/>samples = 2<br/>value = 2294.0>, fillcolor="#e5813939"] ;
240 -> 241 ;
242 [label=<mse = 0.0<br/>samples = 1<br/>value = 2311.0>, fillcolor="#e581393a"] ;
241 -> 242 ;
243 [label=<mse = 0.0<br/>samples = 1<br/>value = 2277.0>, fillcolor="#e5813939"] ;
241 -> 243 ;
244 [label=<mse = 0.0<br/>samples = 1<br/>value = 2169.0>, fillcolor="#e5813936"] ;
240 -> 244 ;
245 [label=<mse = 0.0<br/>samples = 1<br/>value = 1951.0>, fillcolor="#e581392f"] ;
239 -> 245 ;
246 [label=<mse = 0.0<br/>samples = 1<br/>value = 1787.0>, fillcolor="#e581392a"] ;
232 -> 246 ;
247 [label=<temp ≤ 0.197<br/>mse = 12100.0<br/>samples = 2<br/>value = 1639.0>, fillcolor="#e5813925"] ;
231 -> 247 ;
248 [label=<mse = 0.0<br/>samples = 1<br/>value = 1529.0>, fillcolor="#e5813922"] ;
247 -> 248 ;
249 [label=<mse = 0.0<br/>samples = 1<br/>value = 1749.0>, fillcolor="#e5813929"] ;
247 -> 249 ;
250 [label=<weather ≤ 1.5<br/>mse = 83466.667<br/>samples = 3<br/>value = 3069.0>, fillcolor="#e5813951"] ;
230 -> 250 ;
251 [label=<temp ≤ 0.28<br/>mse = 16900.0<br/>samples = 2<br/>value = 3259.0>, fillcolor="#e5813957"] ;
250 -> 251 ;
252 [label=<mse = 0.0<br/>samples = 1<br/>value = 3389.0>, fillcolor="#e581395b"] ;
251 -> 252 ;
253 [label=<mse = 0.0<br/>samples = 1<br/>value = 3129.0>, fillcolor="#e5813953"] ;
251 -> 253 ;
254 [label=<mse = 0.0<br/>samples = 1<br/>value = 2689.0>, fillcolor="#e5813946"] ;
250 -> 254 ;
255 [label=<season ≤ 2.5<br/>mse = 633067.471<br/>samples = 11<br/>value = 3233.273>, fillcolor="#e5813956"] ;
229 -> 255 ;
256 [label=<temp ≤ 0.17<br/>mse = 191804.69<br/>samples = 10<br/>value = 3019.1>, fillcolor="#e5813950"] ;
255 -> 256 ;
257 [label=<mse = 0.0<br/>samples = 1<br/>value = 2236.0>, fillcolor="#e5813938"] ;
256 -> 257 ;
258 [label=<humidity ≤ 0.543<br/>mse = 137406.988<br/>samples = 9<br/>value = 3106.111>, fillcolor="#e5813952"] ;
256 -> 258 ;
259 [label=<humidity ≤ 0.431<br/>mse = 22821.222<br/>samples = 6<br/>value = 3341.333>, fillcolor="#e581395a"] ;
258 -> 259 ;
260 [label=<month ≤ 1.5<br/>mse = 10201.0<br/>samples = 2<br/>value = 3523.0>, fillcolor="#e581395f"] ;
259 -> 260 ;
261 [label=<mse = 0.0<br/>samples = 1<br/>value = 3624.0>, fillcolor="#e5813962"] ;
260 -> 261 ;
262 [label=<mse = 0.0<br/>samples = 1<br/>value = 3422.0>, fillcolor="#e581395c"] ;
260 -> 262 ;
263 [label=<weekday ≤ 4.5<br/>mse = 4379.25<br/>samples = 4<br/>value = 3250.5>, fillcolor="#e5813957"] ;
259 -> 263 ;
264 [label=<humidity ≤ 0.502<br/>mse = 420.25<br/>samples = 2<br/>value = 3312.5>, fillcolor="#e5813959"] ;
263 -> 264 ;
265 [label=<mse = 0.0<br/>samples = 1<br/>value = 3292.0>, fillcolor="#e5813958"] ;
264 -> 265 ;
266 [label=<mse = 0.0<br/>samples = 1<br/>value = 3333.0>, fillcolor="#e5813959"] ;
264 -> 266 ;
267 [label=<windspeed ≤ 0.29<br/>mse = 650.25<br/>samples = 2<br/>value = 3188.5>, fillcolor="#e5813955"] ;
263 -> 267 ;
268 [label=<mse = 0.0<br/>samples = 1<br/>value = 3163.0>, fillcolor="#e5813954"] ;
267 -> 268 ;
269 [label=<mse = 0.0<br/>samples = 1<br/>value = 3214.0>, fillcolor="#e5813956"] ;
267 -> 269 ;
270 [label=<month ≤ 1.5<br/>mse = 34601.556<br/>samples = 3<br/>value = 2635.667>, fillcolor="#e5813944"] ;
258 -> 270 ;
271 [label=<mse = 0.0<br/>samples = 1<br/>value = 2376.0>, fillcolor="#e581393c"] ;
270 -> 271 ;
272 [label=<humidity ≤ 0.65<br/>mse = 1332.25<br/>samples = 2<br/>value = 2765.5>, fillcolor="#e5813948"] ;
270 -> 272 ;
273 [label=<mse = 0.0<br/>samples = 1<br/>value = 2729.0>, fillcolor="#e5813947"] ;
272 -> 273 ;
274 [label=<mse = 0.0<br/>samples = 1<br/>value = 2802.0>, fillcolor="#e5813949"] ;
272 -> 274 ;
275 [label=<mse = 0.0<br/>samples = 1<br/>value = 5375.0>, fillcolor="#e5813998"] ;
255 -> 275 ;
276 [label=<month ≤ 6.5<br/>mse = 426882.0<br/>samples = 6<br/>value = 1402.0>, fillcolor="#e581391e"] ;
228 -> 276 ;
277 [label=<weekday ≤ 3.5<br/>mse = 215906.889<br/>samples = 3<br/>value = 1903.333>, fillcolor="#e581392d"] ;
276 -> 277 ;
278 [label=<weekday ≤ 0.5<br/>mse = 51756.25<br/>samples = 2<br/>value = 2204.5>, fillcolor="#e5813937"] ;
277 -> 278 ;
279 [label=<mse = 0.0<br/>samples = 1<br/>value = 1977.0>, fillcolor="#e5813930"] ;
278 -> 279 ;
280 [label=<mse = 0.0<br/>samples = 1<br/>value = 2432.0>, fillcolor="#e581393e"] ;
278 -> 280 ;
281 [label=<mse = 0.0<br/>samples = 1<br/>value = 1301.0>, fillcolor="#e581391b"] ;
277 -> 281 ;
282 [label=<humidity ≤ 0.807<br/>mse = 135186.889<br/>samples = 3<br/>value = 900.667>, fillcolor="#e581390e"] ;
276 -> 282 ;
283 [label=<workingday ≤ 0.5<br/>mse = 44310.25<br/>samples = 2<br/>value = 1130.5>, fillcolor="#e5813916"] ;
282 -> 283 ;
284 [label=<mse = 0.0<br/>samples = 1<br/>value = 1341.0>, fillcolor="#e581391c"] ;
283 -> 284 ;
285 [label=<mse = 0.0<br/>samples = 1<br/>value = 920.0>, fillcolor="#e581390f"] ;
283 -> 285 ;
286 [label=<mse = 0.0<br/>samples = 1<br/>value = 441.0>, fillcolor="#e5813900"] ;
282 -> 286 ;
287 [label=<season ≤ 1.5<br/>mse = 1469361.094<br/>samples = 86<br/>value = 4391.105>, fillcolor="#e581397a"] ;
227 -> 287 ;
288 [label=<holiday ≤ 0.5<br/>mse = 640079.997<br/>samples = 39<br/>value = 3753.051>, fillcolor="#e5813966"] ;
287 -> 288 ;
289 [label=<humidity ≤ 0.645<br/>mse = 454149.028<br/>samples = 38<br/>value = 3825.158>, fillcolor="#e5813968"] ;
288 -> 289 ;
290 [label=<temp ≤ 0.34<br/>mse = 272020.658<br/>samples = 26<br/>value = 4049.269>, fillcolor="#e581396f"] ;
289 -> 290 ;
291 [label=<humidity ≤ 0.487<br/>mse = 162752.347<br/>samples = 14<br/>value = 3691.286>, fillcolor="#e5813964"] ;
290 -> 291 ;
292 [label=<weekday ≤ 4.5<br/>mse = 68856.56<br/>samples = 5<br/>value = 3239.8>, fillcolor="#e5813956"] ;
291 -> 292 ;
293 [label=<humidity ≤ 0.357<br/>mse = 5489.188<br/>samples = 4<br/>value = 3366.75>, fillcolor="#e581395a"] ;
292 -> 293 ;
294 [label=<mse = 0.0<br/>samples = 1<br/>value = 3243.0>, fillcolor="#e5813957"] ;
293 -> 294 ;
295 [label=<weekday ≤ 1.5<br/>mse = 512.667<br/>samples = 3<br/>value = 3408.0>, fillcolor="#e581395c"] ;
293 -> 295 ;
296 [label=<temp ≤ 0.332<br/>mse = 1.0<br/>samples = 2<br/>value = 3424.0>, fillcolor="#e581395c"] ;
295 -> 296 ;
297 [label=<mse = 0.0<br/>samples = 1<br/>value = 3423.0>, fillcolor="#e581395c"] ;
296 -> 297 ;
298 [label=<mse = 0.0<br/>samples = 1<br/>value = 3425.0>, fillcolor="#e581395c"] ;
296 -> 298 ;
299 [label=<mse = 0.0<br/>samples = 1<br/>value = 3376.0>, fillcolor="#e581395b"] ;
295 -> 299 ;
300 [label=<mse = 0.0<br/>samples = 1<br/>value = 2732.0>, fillcolor="#e5813947"] ;
292 -> 300 ;
301 [label=<month ≤ 1.5<br/>mse = 38759.21<br/>samples = 9<br/>value = 3942.111>, fillcolor="#e581396c"] ;
291 -> 301 ;
302 [label=<weekday ≤ 4.0<br/>mse = 10690.889<br/>samples = 3<br/>value = 4130.333>, fillcolor="#e5813972"] ;
301 -> 302 ;
303 [label=<mse = 0.0<br/>samples = 1<br/>value = 4270.0>, fillcolor="#e5813976"] ;
302 -> 303 ;
304 [label=<humidity ≤ 0.543<br/>mse = 1406.25<br/>samples = 2<br/>value = 4060.5>, fillcolor="#e5813970"] ;
302 -> 304 ;
305 [label=<mse = 0.0<br/>samples = 1<br/>value = 4098.0>, fillcolor="#e5813971"] ;
304 -> 305 ;
306 [label=<mse = 0.0<br/>samples = 1<br/>value = 4023.0>, fillcolor="#e581396f"] ;
304 -> 306 ;
307 [label=<humidity ≤ 0.533<br/>mse = 26222.667<br/>samples = 6<br/>value = 3848.0>, fillcolor="#e5813969"] ;
301 -> 307 ;
308 [label=<weather ≤ 1.5<br/>mse = 13110.25<br/>samples = 2<br/>value = 4036.5>, fillcolor="#e581396f"] ;
307 -> 308 ;
309 [label=<mse = 0.0<br/>samples = 1<br/>value = 4151.0>, fillcolor="#e5813973"] ;
308 -> 309 ;
310 [label=<mse = 0.0<br/>samples = 1<br/>value = 3922.0>, fillcolor="#e581396b"] ;
308 -> 310 ;
311 [label=<windspeed ≤ 0.29<br/>mse = 6129.688<br/>samples = 4<br/>value = 3753.75>, fillcolor="#e5813966"] ;
307 -> 311 ;
312 [label=<weather ≤ 1.5<br/>mse = 574.889<br/>samples = 3<br/>value = 3797.333>, fillcolor="#e5813968"] ;
311 -> 312 ;
313 [label=<weekday ≤ 1.5<br/>mse = 12.25<br/>samples = 2<br/>value = 3780.5>, fillcolor="#e5813967"] ;
312 -> 313 ;
314 [label=<mse = 0.0<br/>samples = 1<br/>value = 3784.0>, fillcolor="#e5813967"] ;
313 -> 314 ;
315 [label=<mse = 0.0<br/>samples = 1<br/>value = 3777.0>, fillcolor="#e5813967"] ;
313 -> 315 ;
316 [label=<mse = 0.0<br/>samples = 1<br/>value = 3831.0>, fillcolor="#e5813969"] ;
312 -> 316 ;
317 [label=<mse = 0.0<br/>samples = 1<br/>value = 3623.0>, fillcolor="#e5813962"] ;
311 -> 317 ;
318 [label=<windspeed ≤ 0.214<br/>mse = 75560.076<br/>samples = 12<br/>value = 4466.917>, fillcolor="#e581397c"] ;
290 -> 318 ;
319 [label=<month ≤ 1.5<br/>mse = 23592.472<br/>samples = 6<br/>value = 4267.167>, fillcolor="#e5813976"] ;
318 -> 319 ;
320 [label=<mse = 0.0<br/>samples = 1<br/>value = 4521.0>, fillcolor="#e581397e"] ;
319 -> 320 ;
321 [label=<humidity ≤ 0.578<br/>mse = 12847.44<br/>samples = 5<br/>value = 4216.4>, fillcolor="#e5813975"] ;
319 -> 321 ;
322 [label=<windspeed ≤ 0.164<br/>mse = 7542.889<br/>samples = 3<br/>value = 4287.333>, fillcolor="#e5813977"] ;
321 -> 322 ;
323 [label=<mse = 0.0<br/>samples = 1<br/>value = 4375.0>, fillcolor="#e5813979"] ;
322 -> 323 ;
324 [label=<humidity ≤ 0.533<br/>mse = 5550.25<br/>samples = 2<br/>value = 4243.5>, fillcolor="#e5813975"] ;
322 -> 324 ;
325 [label=<mse = 0.0<br/>samples = 1<br/>value = 4169.0>, fillcolor="#e5813973"] ;
324 -> 325 ;
326 [label=<mse = 0.0<br/>samples = 1<br/>value = 4318.0>, fillcolor="#e5813978"] ;
324 -> 326 ;
327 [label=<month ≤ 2.5<br/>mse = 1936.0<br/>samples = 2<br/>value = 4110.0>, fillcolor="#e5813971"] ;
321 -> 327 ;
328 [label=<mse = 0.0<br/>samples = 1<br/>value = 4154.0>, fillcolor="#e5813973"] ;
327 -> 328 ;
329 [label=<mse = 0.0<br/>samples = 1<br/>value = 4066.0>, fillcolor="#e5813970"] ;
327 -> 329 ;
330 [label=<month ≤ 2.5<br/>mse = 47727.556<br/>samples = 6<br/>value = 4666.667>, fillcolor="#e5813982"] ;
318 -> 330 ;
331 [label=<windspeed ≤ 0.248<br/>mse = 34229.556<br/>samples = 3<br/>value = 4534.667>, fillcolor="#e581397e"] ;
330 -> 331 ;
332 [label=<mse = 0.0<br/>samples = 1<br/>value = 4773.0>, fillcolor="#e5813986"] ;
331 -> 332 ;
333 [label=<temp ≤ 0.378<br/>mse = 8742.25<br/>samples = 2<br/>value = 4415.5>, fillcolor="#e581397b"] ;
331 -> 333 ;
334 [label=<mse = 0.0<br/>samples = 1<br/>value = 4322.0>, fillcolor="#e5813978"] ;
333 -> 334 ;
335 [label=<mse = 0.0<br/>samples = 1<br/>value = 4509.0>, fillcolor="#e581397e"] ;
333 -> 335 ;
336 [label=<windspeed ≤ 0.38<br/>mse = 26377.556<br/>samples = 3<br/>value = 4798.667>, fillcolor="#e5813986"] ;
330 -> 336 ;
337 [label=<windspeed ≤ 0.284<br/>mse = 6.25<br/>samples = 2<br/>value = 4913.5>, fillcolor="#e581398a"] ;
336 -> 337 ;
338 [label=<mse = 0.0<br/>samples = 1<br/>value = 4911.0>, fillcolor="#e581398a"] ;
337 -> 338 ;
339 [label=<mse = 0.0<br/>samples = 1<br/>value = 4916.0>, fillcolor="#e581398a"] ;
337 -> 339 ;
340 [label=<mse = 0.0<br/>samples = 1<br/>value = 4569.0>, fillcolor="#e581397f"] ;
336 -> 340 ;
341 [label=<workingday ≤ 0.5<br/>mse = 504155.076<br/>samples = 12<br/>value = 3339.583>, fillcolor="#e581395a"] ;
289 -> 341 ;
342 [label=<mse = 0.0<br/>samples = 1<br/>value = 2294.0>, fillcolor="#e5813939"] ;
341 -> 342 ;
343 [label=<month ≤ 1.5<br/>mse = 441566.413<br/>samples = 11<br/>value = 3434.636>, fillcolor="#e581395c"] ;
341 -> 343 ;
344 [label=<windspeed ≤ 0.184<br/>mse = 224453.333<br/>samples = 6<br/>value = 3750.0>, fillcolor="#e5813966"] ;
343 -> 344 ;
345 [label=<weekday ≤ 3.0<br/>mse = 14304.889<br/>samples = 3<br/>value = 4170.333>, fillcolor="#e5813973"] ;
344 -> 345 ;
346 [label=<mse = 0.0<br/>samples = 1<br/>value = 4339.0>, fillcolor="#e5813978"] ;
345 -> 346 ;
347 [label=<humidity ≤ 0.786<br/>mse = 121.0<br/>samples = 2<br/>value = 4086.0>, fillcolor="#e5813971"] ;
345 -> 347 ;
348 [label=<mse = 0.0<br/>samples = 1<br/>value = 4075.0>, fillcolor="#e5813970"] ;
347 -> 348 ;
349 [label=<mse = 0.0<br/>samples = 1<br/>value = 4097.0>, fillcolor="#e5813971"] ;
347 -> 349 ;
350 [label=<windspeed ≤ 0.346<br/>mse = 81241.556<br/>samples = 3<br/>value = 3329.667>, fillcolor="#e5813959"] ;
344 -> 350 ;
351 [label=<humidity ≤ 0.694<br/>mse = 5041.0<br/>samples = 2<br/>value = 3527.0>, fillcolor="#e581395f"] ;
350 -> 351 ;
352 [label=<mse = 0.0<br/>samples = 1<br/>value = 3598.0>, fillcolor="#e5813961"] ;
351 -> 352 ;
353 [label=<mse = 0.0<br/>samples = 1<br/>value = 3456.0>, fillcolor="#e581395d"] ;
351 -> 353 ;
354 [label=<mse = 0.0<br/>samples = 1<br/>value = 2935.0>, fillcolor="#e581394d"] ;
350 -> 354 ;
355 [label=<humidity ≤ 0.779<br/>mse = 439542.96<br/>samples = 5<br/>value = 3056.2>, fillcolor="#e5813951"] ;
343 -> 355 ;
356 [label=<windspeed ≤ 0.166<br/>mse = 82624.688<br/>samples = 4<br/>value = 3361.75>, fillcolor="#e581395a"] ;
355 -> 356 ;
357 [label=<windspeed ≤ 0.118<br/>mse = 8930.25<br/>samples = 2<br/>value = 3099.5>, fillcolor="#e5813952"] ;
356 -> 357 ;
358 [label=<mse = 0.0<br/>samples = 1<br/>value = 3005.0>, fillcolor="#e581394f"] ;
357 -> 358 ;
359 [label=<mse = 0.0<br/>samples = 1<br/>value = 3194.0>, fillcolor="#e5813955"] ;
357 -> 359 ;
360 [label=<weekday ≤ 4.5<br/>mse = 18769.0<br/>samples = 2<br/>value = 3624.0>, fillcolor="#e5813962"] ;
356 -> 360 ;
361 [label=<mse = 0.0<br/>samples = 1<br/>value = 3761.0>, fillcolor="#e5813967"] ;
360 -> 361 ;
362 [label=<mse = 0.0<br/>samples = 1<br/>value = 3487.0>, fillcolor="#e581395e"] ;
360 -> 362 ;
363 [label=<mse = 0.0<br/>samples = 1<br/>value = 1834.0>, fillcolor="#e581392b"] ;
355 -> 363 ;
364 [label=<mse = 0.0<br/>samples = 1<br/>value = 1013.0>, fillcolor="#e5813912"] ;
288 -> 364 ;
365 [label=<humidity ≤ 0.765<br/>mse = 1539355.779<br/>samples = 47<br/>value = 4920.553>, fillcolor="#e581398a"] ;
287 -> 365 ;
366 [label=<temp ≤ 0.386<br/>mse = 794252.367<br/>samples = 37<br/>value = 5268.892>, fillcolor="#e5813995"] ;
365 -> 366 ;
367 [label=<windspeed ≤ 0.068<br/>mse = 510669.382<br/>samples = 30<br/>value = 5087.133>, fillcolor="#e581398f"] ;
366 -> 367 ;
368 [label=<temp ≤ 0.327<br/>mse = 1771561.0<br/>samples = 2<br/>value = 3756.0>, fillcolor="#e5813966"] ;
367 -> 368 ;
369 [label=<mse = 0.0<br/>samples = 1<br/>value = 5087.0>, fillcolor="#e581398f"] ;
368 -> 369 ;
370 [label=<mse = 0.0<br/>samples = 1<br/>value = 2425.0>, fillcolor="#e581393d"] ;
368 -> 370 ;
371 [label=<windspeed ≤ 0.151<br/>mse = 284999.883<br/>samples = 28<br/>value = 5182.214>, fillcolor="#e5813992"] ;
367 -> 371 ;
372 [label=<windspeed ≤ 0.143<br/>mse = 400116.0<br/>samples = 9<br/>value = 4926.667>, fillcolor="#e581398a"] ;
371 -> 372 ;
373 [label=<temp ≤ 0.375<br/>mse = 304778.938<br/>samples = 8<br/>value = 5053.75>, fillcolor="#e581398e"] ;
372 -> 373 ;
374 [label=<month ≤ 11.5<br/>mse = 234826.694<br/>samples = 7<br/>value = 5172.857>, fillcolor="#e5813992"] ;
373 -> 374 ;
375 [label=<weekday ≤ 3.0<br/>mse = 16204.667<br/>samples = 3<br/>value = 5472.0>, fillcolor="#e581399b"] ;
374 -> 375 ;
376 [label=<mse = 0.0<br/>samples = 1<br/>value = 5634.0>, fillcolor="#e58139a0"] ;
375 -> 376 ;
377 [label=<temp ≤ 0.325<br/>mse = 4624.0<br/>samples = 2<br/>value = 5391.0>, fillcolor="#e5813999"] ;
375 -> 377 ;
378 [label=<mse = 0.0<br/>samples = 1<br/>value = 5323.0>, fillcolor="#e5813997"] ;
377 -> 378 ;
379 [label=<mse = 0.0<br/>samples = 1<br/>value = 5459.0>, fillcolor="#e581399b"] ;
377 -> 379 ;
380 [label=<temp ≤ 0.327<br/>mse = 281342.25<br/>samples = 4<br/>value = 4948.5>, fillcolor="#e581398b"] ;
374 -> 380 ;
381 [label=<humidity ≤ 0.647<br/>mse = 75914.0<br/>samples = 3<br/>value = 5222.0>, fillcolor="#e5813993"] ;
380 -> 381 ;
382 [label=<mse = 0.0<br/>samples = 1<br/>value = 5611.0>, fillcolor="#e581399f"] ;
381 -> 382 ;
383 [label=<weather ≤ 1.5<br/>mse = 380.25<br/>samples = 2<br/>value = 5027.5>, fillcolor="#e581398e"] ;
381 -> 383 ;
384 [label=<mse = 0.0<br/>samples = 1<br/>value = 5047.0>, fillcolor="#e581398e"] ;
383 -> 384 ;
385 [label=<mse = 0.0<br/>samples = 1<br/>value = 5008.0>, fillcolor="#e581398d"] ;
383 -> 385 ;
386 [label=<mse = 0.0<br/>samples = 1<br/>value = 4128.0>, fillcolor="#e5813972"] ;
380 -> 386 ;
387 [label=<mse = 0.0<br/>samples = 1<br/>value = 4220.0>, fillcolor="#e5813975"] ;
373 -> 387 ;
388 [label=<mse = 0.0<br/>samples = 1<br/>value = 3910.0>, fillcolor="#e581396b"] ;
372 -> 388 ;
389 [label=<temp ≤ 0.353<br/>mse = 184884.615<br/>samples = 19<br/>value = 5303.263>, fillcolor="#e5813996"] ;
371 -> 389 ;
390 [label=<humidity ≤ 0.642<br/>mse = 172956.769<br/>samples = 13<br/>value = 5145.0>, fillcolor="#e5813991"] ;
389 -> 390 ;
391 [label=<weekday ≤ 3.5<br/>mse = 64116.876<br/>samples = 11<br/>value = 5283.818>, fillcolor="#e5813995"] ;
390 -> 391 ;
392 [label=<temp ≤ 0.337<br/>mse = 16511.6<br/>samples = 5<br/>value = 5073.0>, fillcolor="#e581398f"] ;
391 -> 392 ;
393 [label=<weekday ≤ 1.5<br/>mse = 6726.688<br/>samples = 4<br/>value = 5125.75>, fillcolor="#e5813991"] ;
392 -> 393 ;
394 [label=<windspeed ≤ 0.208<br/>mse = 5776.0<br/>samples = 2<br/>value = 5183.0>, fillcolor="#e5813992"] ;
393 -> 394 ;
395 [label=<mse = 0.0<br/>samples = 1<br/>value = 5107.0>, fillcolor="#e5813990"] ;
394 -> 395 ;
396 [label=<mse = 0.0<br/>samples = 1<br/>value = 5259.0>, fillcolor="#e5813995"] ;
394 -> 396 ;
397 [label=<month ≤ 7.0<br/>mse = 1122.25<br/>samples = 2<br/>value = 5068.5>, fillcolor="#e581398f"] ;
393 -> 397 ;
398 [label=<mse = 0.0<br/>samples = 1<br/>value = 5102.0>, fillcolor="#e5813990"] ;
397 -> 398 ;
399 [label=<mse = 0.0<br/>samples = 1<br/>value = 5035.0>, fillcolor="#e581398e"] ;
397 -> 399 ;
400 [label=<mse = 0.0<br/>samples = 1<br/>value = 4862.0>, fillcolor="#e5813988"] ;
392 -> 400 ;
401 [label=<windspeed ≤ 0.225<br/>mse = 35886.917<br/>samples = 6<br/>value = 5459.5>, fillcolor="#e581399b"] ;
391 -> 401 ;
402 [label=<weekday ≤ 4.5<br/>mse = 9197.5<br/>samples = 4<br/>value = 5576.0>, fillcolor="#e581399e"] ;
401 -> 402 ;
403 [label=<month ≤ 11.5<br/>mse = 1892.25<br/>samples = 2<br/>value = 5488.5>, fillcolor="#e581399c"] ;
402 -> 403 ;
404 [label=<mse = 0.0<br/>samples = 1<br/>value = 5445.0>, fillcolor="#e581399a"] ;
403 -> 404 ;
405 [label=<mse = 0.0<br/>samples = 1<br/>value = 5532.0>, fillcolor="#e581399d"] ;
403 -> 405 ;
406 [label=<workingday ≤ 0.5<br/>mse = 1190.25<br/>samples = 2<br/>value = 5663.5>, fillcolor="#e58139a1"] ;
402 -> 406 ;
407 [label=<mse = 0.0<br/>samples = 1<br/>value = 5629.0>, fillcolor="#e58139a0"] ;
406 -> 407 ;
408 [label=<mse = 0.0<br/>samples = 1<br/>value = 5698.0>, fillcolor="#e58139a2"] ;
406 -> 408 ;
409 [label=<windspeed ≤ 0.309<br/>mse = 7832.25<br/>samples = 2<br/>value = 5226.5>, fillcolor="#e5813994"] ;
401 -> 409 ;
410 [label=<mse = 0.0<br/>samples = 1<br/>value = 5138.0>, fillcolor="#e5813991"] ;
409 -> 410 ;
411 [label=<mse = 0.0<br/>samples = 1<br/>value = 5315.0>, fillcolor="#e5813996"] ;
409 -> 411 ;
412 [label=<weekday ≤ 1.0<br/>mse = 82656.25<br/>samples = 2<br/>value = 4381.5>, fillcolor="#e581397a"] ;
390 -> 412 ;
413 [label=<mse = 0.0<br/>samples = 1<br/>value = 4669.0>, fillcolor="#e5813982"] ;
412 -> 413 ;
414 [label=<mse = 0.0<br/>samples = 1<br/>value = 4094.0>, fillcolor="#e5813971"] ;
412 -> 414 ;
415 [label=<humidity ≤ 0.589<br/>mse = 38876.472<br/>samples = 6<br/>value = 5646.167>, fillcolor="#e58139a1"] ;
389 -> 415 ;
416 [label=<weather ≤ 1.5<br/>mse = 4830.25<br/>samples = 2<br/>value = 5916.5>, fillcolor="#e58139a9"] ;
415 -> 416 ;
417 [label=<mse = 0.0<br/>samples = 1<br/>value = 5847.0>, fillcolor="#e58139a7"] ;
416 -> 417 ;
418 [label=<mse = 0.0<br/>samples = 1<br/>value = 5986.0>, fillcolor="#e58139ab"] ;
416 -> 418 ;
419 [label=<weekday ≤ 2.5<br/>mse = 1089.5<br/>samples = 4<br/>value = 5511.0>, fillcolor="#e581399c"] ;
415 -> 419 ;
420 [label=<windspeed ≤ 0.212<br/>mse = 108.222<br/>samples = 3<br/>value = 5492.667>, fillcolor="#e581399c"] ;
419 -> 420 ;
421 [label=<mse = 0.0<br/>samples = 1<br/>value = 5478.0>, fillcolor="#e581399b"] ;
420 -> 421 ;
422 [label=<month ≤ 11.5<br/>mse = 1.0<br/>samples = 2<br/>value = 5500.0>, fillcolor="#e581399c"] ;
420 -> 422 ;
423 [label=<mse = 0.0<br/>samples = 1<br/>value = 5499.0>, fillcolor="#e581399c"] ;
422 -> 423 ;
424 [label=<mse = 0.0<br/>samples = 1<br/>value = 5501.0>, fillcolor="#e581399c"] ;
422 -> 424 ;
425 [label=<mse = 0.0<br/>samples = 1<br/>value = 5566.0>, fillcolor="#e581399e"] ;
419 -> 425 ;
426 [label=<weather ≤ 1.5<br/>mse = 1261237.551<br/>samples = 7<br/>value = 6047.857>, fillcolor="#e58139ad"] ;
366 -> 426 ;
427 [label=<windspeed ≤ 0.198<br/>mse = 249550.0<br/>samples = 5<br/>value = 6518.0>, fillcolor="#e58139bb"] ;
426 -> 427 ;
428 [label=<windspeed ≤ 0.093<br/>mse = 54914.889<br/>samples = 3<br/>value = 6832.333>, fillcolor="#e58139c5"] ;
427 -> 428 ;
429 [label=<mse = 0.0<br/>samples = 1<br/>value = 6536.0>, fillcolor="#e58139bc"] ;
428 -> 429 ;
430 [label=<temp ≤ 0.407<br/>mse = 16512.25<br/>samples = 2<br/>value = 6980.5>, fillcolor="#e58139ca"] ;
428 -> 430 ;
431 [label=<mse = 0.0<br/>samples = 1<br/>value = 7109.0>, fillcolor="#e58139ce"] ;
430 -> 431 ;
432 [label=<mse = 0.0<br/>samples = 1<br/>value = 6852.0>, fillcolor="#e58139c6"] ;
430 -> 432 ;
433 [label=<temp ≤ 0.408<br/>mse = 170982.25<br/>samples = 2<br/>value = 6046.5>, fillcolor="#e58139ad"] ;
427 -> 433 ;
434 [label=<mse = 0.0<br/>samples = 1<br/>value = 6460.0>, fillcolor="#e58139ba"] ;
433 -> 434 ;
435 [label=<mse = 0.0<br/>samples = 1<br/>value = 5633.0>, fillcolor="#e58139a0"] ;
433 -> 435 ;
436 [label=<weekday ≤ 3.0<br/>mse = 1856406.25<br/>samples = 2<br/>value = 4872.5>, fillcolor="#e5813989"] ;
426 -> 436 ;
437 [label=<mse = 0.0<br/>samples = 1<br/>value = 3510.0>, fillcolor="#e581395f"] ;
436 -> 437 ;
438 [label=<mse = 0.0<br/>samples = 1<br/>value = 6235.0>, fillcolor="#e58139b3"] ;
436 -> 438 ;
439 [label=<month ≤ 10.5<br/>mse = 2186138.41<br/>samples = 10<br/>value = 3631.7>, fillcolor="#e5813963"] ;
365 -> 439 ;
440 [label=<humidity ≤ 0.796<br/>mse = 1030406.0<br/>samples = 3<br/>value = 1779.0>, fillcolor="#e5813929"] ;
439 -> 440 ;
441 [label=<mse = 0.0<br/>samples = 1<br/>value = 3214.0>, fillcolor="#e5813956"] ;
440 -> 441 ;
442 [label=<season ≤ 3.0<br/>mse = 1190.25<br/>samples = 2<br/>value = 1061.5>, fillcolor="#e5813913"] ;
440 -> 442 ;
443 [label=<mse = 0.0<br/>samples = 1<br/>value = 1027.0>, fillcolor="#e5813912"] ;
442 -> 443 ;
444 [label=<mse = 0.0<br/>samples = 1<br/>value = 1096.0>, fillcolor="#e5813914"] ;
442 -> 444 ;
445 [label=<weekday ≤ 4.0<br/>mse = 579923.347<br/>samples = 7<br/>value = 4425.714>, fillcolor="#e581397b"] ;
439 -> 445 ;
446 [label=<windspeed ≤ 0.141<br/>mse = 279663.44<br/>samples = 5<br/>value = 4041.4>, fillcolor="#e581396f"] ;
445 -> 446 ;
447 [label=<temp ≤ 0.355<br/>mse = 154140.667<br/>samples = 3<br/>value = 4340.0>, fillcolor="#e5813978"] ;
446 -> 447 ;
448 [label=<mse = 0.0<br/>samples = 1<br/>value = 4649.0>, fillcolor="#e5813982"] ;
447 -> 448 ;
449 [label=<humidity ≤ 0.873<br/>mse = 159600.25<br/>samples = 2<br/>value = 4185.5>, fillcolor="#e5813974"] ;
447 -> 449 ;
450 [label=<mse = 0.0<br/>samples = 1<br/>value = 3786.0>, fillcolor="#e5813967"] ;
449 -> 450 ;
451 [label=<mse = 0.0<br/>samples = 1<br/>value = 4585.0>, fillcolor="#e5813980"] ;
449 -> 451 ;
452 [label=<month ≤ 11.5<br/>mse = 133590.25<br/>samples = 2<br/>value = 3593.5>, fillcolor="#e5813961"] ;
446 -> 452 ;
453 [label=<mse = 0.0<br/>samples = 1<br/>value = 3959.0>, fillcolor="#e581396d"] ;
452 -> 453 ;
454 [label=<mse = 0.0<br/>samples = 1<br/>value = 3228.0>, fillcolor="#e5813956"] ;
452 -> 454 ;
455 [label=<temp ≤ 0.34<br/>mse = 38220.25<br/>samples = 2<br/>value = 5386.5>, fillcolor="#e5813999"] ;
445 -> 455 ;
456 [label=<mse = 0.0<br/>samples = 1<br/>value = 5191.0>, fillcolor="#e5813993"] ;
455 -> 456 ;
457 [label=<mse = 0.0<br/>samples = 1<br/>value = 5582.0>, fillcolor="#e581399f"] ;
455 -> 457 ;
458 [label=<year ≤ 0.5<br/>mse = 2186961.742<br/>samples = 355<br/>value = 5523.155>, fillcolor="#e581399d"] ;
0 -> 458 [labeldistance=2.5, labelangle=-45, headlabel="False"] ;
459 [label=<weather ≤ 2.5<br/>mse = 651458.149<br/>samples = 169<br/>value = 4309.325>, fillcolor="#e5813977"] ;
458 -> 459 ;
460 [label=<temp ≤ 0.471<br/>mse = 509392.464<br/>samples = 162<br/>value = 4392.154>, fillcolor="#e581397a"] ;
459 -> 460 ;
461 [label=<month ≤ 3.5<br/>mse = 440155.484<br/>samples = 16<br/>value = 3496.375>, fillcolor="#e581395e"] ;
460 -> 461 ;
462 [label=<season ≤ 1.5<br/>mse = 12996.0<br/>samples = 2<br/>value = 2589.0>, fillcolor="#e5813942"] ;
461 -> 462 ;
463 [label=<mse = 0.0<br/>samples = 1<br/>value = 2475.0>, fillcolor="#e581393f"] ;
462 -> 463 ;
464 [label=<mse = 0.0<br/>samples = 1<br/>value = 2703.0>, fillcolor="#e5813946"] ;
462 -> 464 ;
465 [label=<humidity ≤ 0.597<br/>mse = 366757.143<br/>samples = 14<br/>value = 3626.0>, fillcolor="#e5813962"] ;
461 -> 465 ;
466 [label=<windspeed ≤ 0.137<br/>mse = 246951.222<br/>samples = 6<br/>value = 4018.333>, fillcolor="#e581396e"] ;
465 -> 466 ;
467 [label=<mse = 0.0<br/>samples = 1<br/>value = 3267.0>, fillcolor="#e5813957"] ;
466 -> 467 ;
468 [label=<weekday ≤ 2.0<br/>mse = 160861.04<br/>samples = 5<br/>value = 4168.6>, fillcolor="#e5813973"] ;
466 -> 468 ;
469 [label=<temp ≤ 0.449<br/>mse = 182.25<br/>samples = 2<br/>value = 3730.5>, fillcolor="#e5813966"] ;
468 -> 469 ;
470 [label=<mse = 0.0<br/>samples = 1<br/>value = 3717.0>, fillcolor="#e5813965"] ;
469 -> 470 ;
471 [label=<mse = 0.0<br/>samples = 1<br/>value = 3744.0>, fillcolor="#e5813966"] ;
469 -> 471 ;
472 [label=<season ≤ 2.5<br/>mse = 54722.889<br/>samples = 3<br/>value = 4460.667>, fillcolor="#e581397c"] ;
468 -> 472 ;
473 [label=<month ≤ 4.5<br/>mse = 14884.0<br/>samples = 2<br/>value = 4311.0>, fillcolor="#e5813977"] ;
472 -> 473 ;
474 [label=<mse = 0.0<br/>samples = 1<br/>value = 4189.0>, fillcolor="#e5813974"] ;
473 -> 474 ;
475 [label=<mse = 0.0<br/>samples = 1<br/>value = 4433.0>, fillcolor="#e581397b"] ;
473 -> 475 ;
476 [label=<mse = 0.0<br/>samples = 1<br/>value = 4760.0>, fillcolor="#e5813985"] ;
472 -> 476 ;
477 [label=<windspeed ≤ 0.141<br/>mse = 254584.438<br/>samples = 8<br/>value = 3331.75>, fillcolor="#e5813959"] ;
465 -> 477 ;
478 [label=<mse = 0.0<br/>samples = 1<br/>value = 4187.0>, fillcolor="#e5813974"] ;
477 -> 478 ;
479 [label=<humidity ≤ 0.859<br/>mse = 171532.816<br/>samples = 7<br/>value = 3209.571>, fillcolor="#e5813956"] ;
477 -> 479 ;
480 [label=<humidity ≤ 0.756<br/>mse = 67319.139<br/>samples = 6<br/>value = 3071.833>, fillcolor="#e5813951"] ;
479 -> 480 ;
481 [label=<temp ≤ 0.461<br/>mse = 31789.25<br/>samples = 4<br/>value = 3214.5>, fillcolor="#e5813956"] ;
480 -> 481 ;
482 [label=<season ≤ 3.0<br/>mse = 905.556<br/>samples = 3<br/>value = 3112.667>, fillcolor="#e5813953"] ;
481 -> 482 ;
483 [label=<weekday ≤ 4.5<br/>mse = 56.25<br/>samples = 2<br/>value = 3133.5>, fillcolor="#e5813953"] ;
482 -> 483 ;
484 [label=<mse = 0.0<br/>samples = 1<br/>value = 3141.0>, fillcolor="#e5813953"] ;
483 -> 484 ;
485 [label=<mse = 0.0<br/>samples = 1<br/>value = 3126.0>, fillcolor="#e5813953"] ;
483 -> 485 ;
486 [label=<mse = 0.0<br/>samples = 1<br/>value = 3071.0>, fillcolor="#e5813951"] ;
482 -> 486 ;
487 [label=<mse = 0.0<br/>samples = 1<br/>value = 3520.0>, fillcolor="#e581395f"] ;
481 -> 487 ;
488 [label=<humidity ≤ 0.822<br/>mse = 16256.25<br/>samples = 2<br/>value = 2786.5>, fillcolor="#e5813949"] ;
480 -> 488 ;
489 [label=<mse = 0.0<br/>samples = 1<br/>value = 2659.0>, fillcolor="#e5813945"] ;
488 -> 489 ;
490 [label=<mse = 0.0<br/>samples = 1<br/>value = 2914.0>, fillcolor="#e581394c"] ;
488 -> 490 ;
491 [label=<mse = 0.0<br/>samples = 1<br/>value = 4036.0>, fillcolor="#e581396f"] ;
479 -> 491 ;
492 [label=<weather ≤ 1.5<br/>mse = 419406.698<br/>samples = 146<br/>value = 4490.322>, fillcolor="#e581397d"] ;
460 -> 492 ;
493 [label=<temp ≤ 0.807<br/>mse = 294288.933<br/>samples = 98<br/>value = 4671.837>, fillcolor="#e5813983"] ;
492 -> 493 ;
494 [label=<month ≤ 4.5<br/>mse = 247091.981<br/>samples = 94<br/>value = 4720.383>, fillcolor="#e5813984"] ;
493 -> 494 ;
495 [label=<temp ≤ 0.493<br/>mse = 675835.333<br/>samples = 6<br/>value = 3876.0>, fillcolor="#e581396a"] ;
494 -> 495 ;
496 [label=<mse = 0.0<br/>samples = 1<br/>value = 5312.0>, fillcolor="#e5813996"] ;
495 -> 496 ;
497 [label=<temp ≤ 0.59<br/>mse = 316099.36<br/>samples = 5<br/>value = 3588.8>, fillcolor="#e5813961"] ;
495 -> 497 ;
498 [label=<temp ≤ 0.517<br/>mse = 42882.667<br/>samples = 3<br/>value = 3157.0>, fillcolor="#e5813954"] ;
497 -> 498 ;