-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbike_train.csv
We can't make this file beautiful and searchable because it's too large.
13933 lines (13933 loc) · 811 KB
/
bike_train.csv
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
"mnth","hr","holiday","weekday","weathersit","temp","atemp","hum","windspeed","total"
"Jan","0","No","Saturday","Good",3.28,3.0014,81,0,16
"Jan","2","No","Saturday","Good",2.34,1.9982,80,0,32
"Jan","3","No","Saturday","Good",3.28,3.0014,75,0,13
"Jan","4","No","Saturday","Good",3.28,3.0014,75,0,1
"Jan","5","No","Saturday","Fair",3.28,1.0016,75,6.0032,1
"Jan","6","No","Saturday","Good",2.34,1.9982,80,0,2
"Jan","7","No","Saturday","Good",1.4,1.0016,86,0,3
"Jan","9","No","Saturday","Good",7.04,7.001,76,0,14
"Jan","10","No","Saturday","Good",9.86,9.9974,76,16.9979,36
"Jan","11","No","Saturday","Good",8.92,5.9978,81,19.0012,56
"Jan","12","No","Saturday","Good",11.74,11.9972,77,19.0012,84
"Jan","13","No","Saturday","Fair",13.62,13.997,72,19.9995,94
"Jan","14","No","Saturday","Fair",13.62,13.997,72,19.0012,106
"Jan","15","No","Saturday","Fair",12.68,13.0004,77,19.9995,110
"Jan","16","No","Saturday","Fair",11.74,11.9972,82,19.9995,93
"Jan","17","No","Saturday","Fair",12.68,13.0004,82,19.0012,67
"Jan","18","No","Saturday","Bad",11.74,11.9972,88,16.9979,35
"Jan","19","No","Saturday","Bad",11.74,11.9972,88,16.9979,37
"Jan","20","No","Saturday","Fair",10.8,11.0006,87,16.9979,36
"Jan","21","No","Saturday","Fair",10.8,11.0006,87,12.998,34
"Jan","23","No","Saturday","Fair",13.62,13.997,88,19.9995,39
"Jan","0","No","Sunday","Fair",13.62,13.997,88,19.9995,17
"Jan","1","No","Sunday","Fair",12.68,13.0004,94,16.9979,17
"Jan","4","No","Sunday","Fair",13.62,13.997,94,12.998,3
"Jan","6","No","Sunday","Bad",11.74,11.9972,77,19.9995,2
"Jan","8","No","Sunday","Bad",10.8,11.0006,71,15.0013,8
"Jan","9","No","Sunday","Fair",9.86,9.9974,76,15.0013,20
"Jan","10","No","Sunday","Fair",8.92,7.001,81,15.0013,53
"Jan","11","No","Sunday","Fair",8.92,5.9978,71,16.9979,70
"Jan","12","No","Sunday","Fair",8.92,5.9978,66,19.9995,93
"Jan","13","No","Sunday","Fair",8.92,7.001,66,8.9981,75
"Jan","14","No","Sunday","Bad",8.92,7.001,76,12.998,59
"Jan","15","No","Sunday","Bad",7.98,5.9978,81,11.0014,74
"Jan","16","No","Sunday","Bad",7.98,5.9978,71,11.0014,76
"Jan","17","No","Sunday","Good",7.98,5.9978,57,12.998,65
"Jan","18","No","Sunday","Fair",8.92,5.9978,46,22.0028,53
"Jan","19","No","Sunday","Good",7.04,3.0014,42,30.0026,30
"Jan","20","No","Sunday","Good",6.1,1.9982,39,23.9994,22
"Jan","21","No","Sunday","Good",4.22,-0.998200000000001,44,22.0028,31
"Jan","22","No","Sunday","Good",3.28,-2.0014,44,19.9995,9
"Jan","23","No","Sunday","Good",2.34,-0.998200000000001,47,11.0014,8
"Jan","0","No","Monday","Good",2.34,-2.998,44,23.9994,5
"Jan","1","No","Monday","Good",1.4,-4.9978,44,27.9993,2
"Jan","4","No","Monday","Good",-0.48,-6.9976,47,26.0027,1
"Jan","5","No","Monday","Good",-0.48,-6.9976,47,19.0012,3
"Jan","7","No","Monday","Good",-1.42,-6.9976,50,12.998,64
"Jan","9","No","Monday","Good",-0.48,-6.9976,43,26.0027,88
"Jan","10","No","Monday","Good",0.459999999999999,-4.9978,43,16.9979,44
"Jan","11","No","Monday","Good",1.4,-4.0012,40,22.0028,51
"Jan","14","No","Monday","Good",4.22,-0.00159999999999982,30,19.0012,77
"Jan","15","No","Monday","Good",4.22,-0.00159999999999982,30,16.9979,72
"Jan","17","No","Monday","Good",3.28,-0.998200000000001,30,15.0013,157
"Jan","18","No","Monday","Good",3.28,1.0016,32,7.0015,157
"Jan","19","No","Monday","Good",1.4,1.0016,47,0,110
"Jan","20","No","Monday","Good",1.4,-0.998200000000001,47,7.0015,52
"Jan","21","No","Monday","Good",0.459999999999999,-2.998,64,8.9981,52
"Jan","22","No","Monday","Good",-1.42,-6.001,69,8.9981,20
"Jan","23","No","Monday","Good",0.459999999999999,-2.0014,55,7.0015,12
"Jan","0","No","Tuesday","Good",-0.48,-4.0012,55,7.0015,5
"Jan","1","No","Tuesday","Good",-0.48,-4.0012,59,7.0015,2
"Jan","2","No","Tuesday","Good",-1.42,-6.001,63,8.9981,1
"Jan","4","No","Tuesday","Good",-1.42,-4.0012,63,6.0032,2
"Jan","7","No","Tuesday","Good",-2.36,-6.001,74,8.9981,94
"Jan","8","No","Tuesday","Good",-1.42,-6.001,69,11.0014,179
"Jan","10","No","Tuesday","Fair",-0.48,-6.9976,69,22.0028,42
"Jan","11","No","Tuesday","Good",2.34,-2.0014,51,19.9995,57
"Jan","13","No","Tuesday","Good",3.28,-0.998200000000001,56,12.998,97
"Jan","14","No","Tuesday","Good",4.22,1.0016,52,15.0013,63
"Jan","16","No","Tuesday","Good",6.1,3.0014,49,16.9979,83
"Jan","17","No","Tuesday","Good",5.16,1.9982,48,15.0013,212
"Jan","18","No","Tuesday","Good",4.22,1.0016,48,12.998,182
"Jan","19","No","Tuesday","Good",3.28,1.0016,48,7.0015,112
"Jan","20","No","Tuesday","Good",3.28,1.0016,48,7.0015,54
"Jan","21","No","Tuesday","Good",2.34,1.9982,64,0,48
"Jan","22","No","Tuesday","Good",2.34,1.0016,64,6.0032,35
"Jan","23","No","Tuesday","Good",1.4,-0.998200000000001,69,6.0032,11
"Jan","0","No","Wednesday","Good",1.4,1.0016,64,0,6
"Jan","1","No","Wednesday","Good",-0.48,-2.998,74,6.0032,6
"Jan","2","No","Wednesday","Good",-0.48,-2.998,74,6.0032,2
"Jan","5","No","Wednesday","Good",2.34,-0.998200000000001,47,11.0014,3
"Jan","6","No","Wednesday","Good",1.4,-2.998,47,15.0013,33
"Jan","7","No","Wednesday","Good",0.459999999999999,-4.0012,43,12.998,88
"Jan","9","No","Wednesday","Good",2.34,-2.998,37,22.0028,115
"Jan","10","No","Wednesday","Good",2.34,-2.998,37,22.0028,57
"Jan","11","No","Wednesday","Good",4.22,-0.998200000000001,33,22.0028,46
"Jan","12","No","Wednesday","Good",4.22,-0.998200000000001,33,22.0028,79
"Jan","13","No","Wednesday","Good",5.16,1.0016,30,19.9995,71
"Jan","14","No","Wednesday","Good",6.1,3.0014,28,12.998,62
"Jan","15","No","Wednesday","Good",6.1,3.0014,28,12.998,62
"Jan","16","No","Wednesday","Good",6.1,5.0012,28,6.0032,89
"Jan","17","No","Wednesday","Good",3.28,-0.998200000000001,38,12.998,190
"Jan","19","No","Wednesday","Good",3.28,1.0016,38,7.0015,132
"Jan","20","No","Wednesday","Good",2.34,-0.998200000000001,47,11.0014,89
"Jan","21","No","Wednesday","Good",1.4,-2.998,51,12.998,43
"Jan","22","No","Wednesday","Good",0.459999999999999,-2.998,55,8.9981,42
"Jan","23","No","Wednesday","Good",1.4,1.0016,47,0,19
"Jan","0","No","Thursday","Good",0.459999999999999,-0.00159999999999982,55,0,11
"Jan","1","No","Thursday","Good",-0.48,-0.998200000000001,64,0,4
"Jan","2","No","Thursday","Good",-0.48,-0.998200000000001,64,0,2
"Jan","4","No","Thursday","Fair",-0.48,-2.998,64,6.0032,1
"Jan","5","No","Thursday","Fair",-1.42,-4.0012,69,6.0032,4
"Jan","6","No","Thursday","Fair",-1.42,-4.9978,63,7.0015,36
"Jan","7","No","Thursday","Fair",-0.48,-0.998200000000001,59,0,95
"Jan","9","No","Thursday","Fair",0.459999999999999,-0.00159999999999982,51,0,122
"Jan","11","No","Thursday","Good",2.34,1.0016,44,6.0032,59
"Jan","12","No","Thursday","Good",4.22,3.0014,35,0,84
"Jan","13","No","Thursday","Good",4.22,1.9982,35,7.0015,67
"Jan","14","No","Thursday","Good",5.16,1.9982,36,11.0014,70
"Jan","15","No","Thursday","Good",5.16,1.9982,36,0,62
"Jan","16","No","Thursday","Good",4.22,1.0016,38,11.0014,86
"Jan","18","No","Thursday","Good",2.34,-0.998200000000001,51,8.9981,163
"Jan","19","No","Thursday","Good",2.34,1.0016,55,6.0032,112
"Jan","20","No","Thursday","Good",1.4,-2.0014,51,11.0014,69
"Jan","21","No","Thursday","Fair",2.34,-2.0014,55,15.0013,48
"Jan","23","No","Thursday","Fair",1.4,-2.998,59,12.998,23
"Jan","0","No","Friday","Fair",1.4,-2.998,64,12.998,17
"Jan","2","No","Friday","Fair",1.4,-2.998,69,15.0013,1
"Jan","5","No","Friday","Bad",2.34,1.9982,55,0,5
"Jan","6","No","Friday","Fair",1.4,1.0016,69,0,34
"Jan","7","No","Friday","Good",1.4,-2.0014,69,8.9981,84
"Jan","8","No","Friday","Good",1.4,-2.998,51,16.9979,210
"Jan","9","No","Friday","Good",1.4,-4.0012,47,19.9995,134
"Jan","10","No","Friday","Good",2.34,-2.998,37,22.0028,63
"Jan","11","No","Friday","Fair",1.4,-2.998,40,15.0013,67
"Jan","12","No","Friday","Fair",1.4,-2.998,37,16.9979,59
"Jan","13","No","Friday","Fair",1.4,-4.0012,37,19.0012,73
"Jan","14","No","Friday","Fair",1.4,-2.998,40,16.9979,50
"Jan","15","No","Friday","Fair",1.4,-2.0014,37,11.0014,72
"Jan","17","No","Friday","Fair",1.4,1.0016,37,0,187
"Jan","18","No","Friday","Good",1.4,-0.998200000000001,40,6.0032,123
"Jan","19","No","Friday","Good",-0.48,-2.998,55,6.0032,95
"Jan","20","No","Friday","Good",0.459999999999999,-2.0014,47,7.0015,51
"Jan","21","No","Friday","Good",0.459999999999999,-2.998,47,8.9981,39
"Jan","23","No","Friday","Fair",0.459999999999999,-2.998,51,11.0014,15
"Jan","1","No","Saturday","Fair",0.459999999999999,-2.0014,55,6.0032,16
"Jan","2","No","Saturday","Fair",0.459999999999999,-0.00159999999999982,55,0,16
"Jan","3","No","Saturday","Bad",0.459999999999999,-2.998,55,11.0014,7
"Jan","4","No","Saturday","Bad",0.459999999999999,-2.998,55,11.0014,1
"Jan","5","No","Saturday","Fair",-0.48,-4.9978,74,11.0014,5
"Jan","6","No","Saturday","Fair",-0.48,-4.9978,74,11.0014,2
"Jan","7","No","Saturday","Fair",-0.48,-4.0012,74,7.0015,9
"Jan","8","No","Saturday","Bad",-0.48,-4.0012,93,7.0015,15
"Jan","10","No","Saturday","Fair",0.459999999999999,-2.998,80,11.0014,61
"Jan","11","No","Saturday","Fair",1.4,-4.0012,69,26.0027,62
"Jan","12","No","Saturday","Fair",1.4,-4.0012,59,23.9994,98
"Jan","13","No","Saturday","Good",1.4,-4.0012,44,22.0028,102
"Jan","14","No","Saturday","Good",1.4,-4.9978,32,32.9975,95
"Jan","15","No","Saturday","Good",1.4,-4.9978,32,30.0026,74
"Jan","16","No","Saturday","Good",0.459999999999999,-6.9976,29,30.0026,76
"Jan","18","No","Saturday","Good",-1.42,-8.0008,39,19.9995,55
"Jan","19","No","Saturday","Good",-1.42,-8.0008,36,16.9979,30
"Jan","20","No","Saturday","Good",-2.36,-8.0008,36,16.9979,28
"Jan","21","No","Saturday","Good",-2.36,-8.9974,39,23.9994,37
"Jan","22","No","Saturday","Good",-2.36,-8.9974,36,26.0027,34
"Jan","0","No","Sunday","Good",-3.3,-10.9972,42,26.0027,25
"Jan","1","No","Sunday","Good",-3.3,-12.0004,42,31.0009,12
"Jan","3","No","Sunday","Good",-3.3,-10.9972,46,27.9993,4
"Jan","4","No","Sunday","Good",-4.24,-10.0006,53,12.998,1
"Jan","5","No","Sunday","Good",-4.24,-10.0006,53,12.998,1
"Jan","7","No","Sunday","Good",-4.24,-10.0006,53,12.998,6
"Jan","8","No","Sunday","Good",-3.3,-10.0006,49,19.0012,10
"Jan","9","No","Sunday","Good",-2.36,-10.9972,46,35.0008,19
"Jan","10","No","Sunday","Good",-1.42,-8.9974,43,26.0027,49
"Jan","11","No","Sunday","Good",-0.48,-8.0008,40,35.0008,49
"Jan","12","No","Sunday","Good",0.459999999999999,-6.9976,37,30.0026,83
"Jan","13","No","Sunday","Good",1.4,-4.9978,34,30.0026,75
"Jan","14","No","Sunday","Good",2.34,-4.0012,32,31.0009,72
"Jan","15","No","Sunday","Good",2.34,-2.998,35,23.9994,82
"Jan","16","No","Sunday","Good",1.4,-4.9978,34,30.0026,92
"Jan","17","No","Sunday","Good",0.459999999999999,-6.001,37,26.0027,62
"Jan","18","No","Sunday","Good",-0.48,-6.9976,40,22.0028,48
"Jan","19","No","Sunday","Good",-0.48,-6.9976,43,22.0028,41
"Jan","20","No","Sunday","Good",-1.42,-8.0008,46,16.9979,38
"Jan","21","No","Sunday","Good",-1.42,-8.9974,46,27.9993,20
"Jan","22","No","Sunday","Good",-1.42,-8.0008,46,19.9995,15
"Jan","23","No","Sunday","Good",-2.36,-6.9976,50,12.998,6
"Jan","0","No","Monday","Good",-2.36,-8.0008,50,19.0012,5
"Jan","1","No","Monday","Good",-2.36,-8.0008,50,19.0012,1
"Jan","2","No","Monday","Good",-2.36,-8.0008,50,15.0013,3
"Jan","3","No","Monday","Good",-2.36,-8.0008,50,15.0013,1
"Jan","4","No","Monday","Good",-3.3,-8.0008,54,8.9981,3
"Jan","5","No","Monday","Good",-3.3,-8.9974,54,16.9979,3
"Jan","8","No","Monday","Fair",-2.36,-8.0008,50,19.0012,188
"Jan","10","No","Monday","Fair",-1.42,-8.0008,50,19.9995,31
"Jan","11","No","Monday","Fair",-0.48,-6.9976,47,19.0012,30
"Jan","12","No","Monday","Fair",1.4,-4.0012,40,19.0012,52
"Jan","13","No","Monday","Fair",1.4,-4.0012,40,19.0012,54
"Jan","14","No","Monday","Fair",1.4,-2.998,40,15.0013,47
"Jan","15","No","Monday","Fair",1.4,-2.998,40,15.0013,45
"Jan","16","No","Monday","Good",1.4,-2.0014,40,8.9981,74
"Jan","17","No","Monday","Good",1.4,-0.998200000000001,40,7.0015,178
"Jan","18","No","Monday","Good",1.4,-2.998,40,15.0013,155
"Jan","19","No","Monday","Good",-0.48,-4.9978,47,11.0014,95
"Jan","20","No","Monday","Good",-0.48,-4.9978,50,11.0014,74
"Jan","21","No","Monday","Good",-1.42,-6.9976,59,12.998,38
"Jan","22","No","Monday","Good",-1.42,-6.001,59,11.0014,24
"Jan","23","No","Monday","Good",-1.42,-6.001,59,11.0014,18
"Jan","0","No","Tuesday","Good",-1.42,-4.9978,59,7.0015,12
"Jan","1","No","Tuesday","Good",-1.42,-6.001,59,11.0014,3
"Jan","5","No","Tuesday","Fair",-0.48,-4.0012,55,8.9981,6
"Jan","8","No","Tuesday","Fair",0.459999999999999,-2.0014,51,6.0032,217
"Jan","9","No","Tuesday","Fair",0.459999999999999,-2.998,51,11.0014,130
"Jan","10","No","Tuesday","Fair",1.4,-2.0014,51,11.0014,54
"Jan","11","No","Tuesday","Fair",1.4,-2.0014,47,8.9981,35
"Jan","12","No","Tuesday","Fair",1.4,-0.998200000000001,51,7.0015,57
"Jan","13","No","Tuesday","Fair",1.4,-0.998200000000001,59,6.0032,52
"Jan","14","No","Tuesday","Fair",1.4,-0.998200000000001,59,6.0032,63
"Jan","15","No","Tuesday","Fair",-0.48,-2.998,80,6.0032,47
"Jan","16","No","Tuesday","Fair",-0.48,-6.001,86,15.0013,76
"Jan","18","No","Tuesday","Bad",-0.48,-4.0012,93,7.0015,95
"Jan","19","No","Tuesday","Bad",-0.48,-0.998200000000001,93,0,51
"Jan","20","No","Tuesday","Bad",-0.48,-6.001,93,12.998,32
"Jan","21","No","Tuesday","Bad",-0.48,-2.998,86,6.0032,20
"Jan","22","No","Tuesday","Bad",-0.48,-4.0012,93,7.0015,29
"Jan","23","No","Tuesday","Bad",-0.48,-2.998,93,6.0032,19
"Jan","0","No","Wednesday","Fair",-0.48,-2.998,86,6.0032,7
"Jan","1","No","Wednesday","Fair",-0.48,-4.0012,86,7.0015,6
"Jan","2","No","Wednesday","Good",-1.42,-6.001,86,8.9981,1
"Jan","7","No","Wednesday","Good",-1.42,-6.001,69,8.9981,54
"Jan","8","No","Wednesday","Good",-0.48,-4.9978,59,11.0014,128
"Jan","9","No","Wednesday","Good",-0.48,-6.9976,59,22.0028,81
"Jan","11","No","Wednesday","Good",1.4,-4.0012,51,26.0027,35
"Jan","13","No","Wednesday","Good",2.34,-2.998,44,23.9994,49
"Jan","14","No","Wednesday","Good",1.4,-4.0012,47,22.0028,44
"Jan","15","No","Wednesday","Good",1.4,-4.9978,47,27.9993,49
"Jan","16","No","Wednesday","Good",2.34,-2.998,44,22.0028,68
"Jan","17","No","Wednesday","Good",1.4,-4.0012,47,23.9994,139
"Jan","18","No","Wednesday","Good",1.4,-6.001,47,35.0008,137
"Jan","19","No","Wednesday","Good",0.459999999999999,-6.001,47,27.9993,83
"Jan","21","No","Wednesday","Good",-0.48,-6.9976,55,22.0028,57
"Jan","22","No","Wednesday","Good",-0.48,-8.0008,55,30.0026,33
"Jan","0","No","Thursday","Good",-1.42,-8.0008,59,19.0012,7
"Jan","1","No","Thursday","Good",-1.42,-8.0008,50,19.0012,2
"Jan","3","No","Thursday","Good",-1.42,-8.0008,50,22.0028,3
"Jan","5","No","Thursday","Good",-1.42,-8.0008,50,19.9995,3
"Jan","6","No","Thursday","Good",-2.36,-6.001,54,8.9981,28
"Jan","7","No","Thursday","Good",-2.36,-6.001,54,8.9981,72
"Jan","8","No","Thursday","Good",-1.42,-6.9976,50,12.998,202
"Jan","10","No","Thursday","Fair",-0.48,-6.9976,50,23.9994,38
"Jan","11","No","Thursday","Fair",1.4,-4.9978,44,30.0026,37
"Jan","12","No","Thursday","Good",1.4,-4.9978,44,27.9993,52
"Jan","13","No","Thursday","Good",2.34,-2.998,41,30.0026,83
"Jan","14","No","Thursday","Good",2.34,-2.998,41,26.0027,42
"Jan","15","No","Thursday","Good",3.28,-2.0014,38,19.9995,60
"Jan","16","No","Thursday","Good",3.28,-2.0014,38,23.9994,78
"Jan","17","No","Thursday","Good",1.4,-4.0012,40,19.0012,162
"Jan","18","No","Thursday","Good",1.4,-4.0012,40,22.0028,144
"Jan","19","No","Thursday","Good",-0.48,-6.001,47,16.9979,99
"Jan","20","No","Thursday","Good",-0.48,-6.001,47,15.0013,64
"Jan","22","No","Thursday","Good",-1.42,-8.0008,46,22.0028,30
"Jan","23","No","Thursday","Good",-2.36,-6.9976,50,12.998,15
"Jan","3","No","Friday","Good",-3.3,-6.9976,54,7.0015,1
"Jan","6","No","Friday","Good",-3.3,-4.0012,54,0,17
"Jan","8","No","Friday","Good",-2.36,-4.9978,68,0,158
"Jan","9","No","Friday","Good",-1.42,-6.001,69,8.9981,117
"Jan","10","No","Friday","Good",0.459999999999999,-4.0012,55,12.998,44
"Jan","11","No","Friday","Good",0.459999999999999,-4.9978,51,19.0012,53
"Jan","12","No","Friday","Good",1.4,-2.998,44,16.9979,61
"Jan","13","No","Friday","Good",2.34,-2.998,37,26.0027,77
"Jan","15","No","Friday","Good",3.28,-0.00159999999999982,38,11.0014,68
"Jan","19","No","Friday","Good",-0.48,-2.998,59,6.0032,92
"Jan","20","No","Friday","Good",0.459999999999999,-0.00159999999999982,59,0,68
"Jan","21","No","Friday","Good",-0.48,-0.998200000000001,69,0,52
"Jan","22","No","Friday","Fair",-0.48,-0.998200000000001,69,0,36
"Jan","23","No","Friday","Fair",0.459999999999999,-0.00159999999999982,55,0,27
"Jan","0","No","Saturday","Good",0.459999999999999,-0.00159999999999982,55,0,28
"Jan","1","No","Saturday","Fair",-0.48,-2.998,59,6.0032,20
"Jan","2","No","Saturday","Fair",-0.48,-2.998,59,6.0032,12
"Jan","4","No","Saturday","Fair",-0.48,-0.998200000000001,59,0,5
"Jan","5","No","Saturday","Good",-0.48,-0.998200000000001,59,0,1
"Jan","6","No","Saturday","Good",-1.42,-4.9978,63,7.0015,3
"Jan","7","No","Saturday","Good",-1.42,-2.0014,63,0,10
"Jan","8","No","Saturday","Good",-1.42,-6.001,63,8.9981,23
"Jan","9","No","Saturday","Good",-0.48,-4.0012,64,8.9981,33
"Jan","10","No","Saturday","Good",0.459999999999999,-2.998,59,11.0014,59
"Jan","11","No","Saturday","Good",1.4,-2.998,55,15.0013,72
"Jan","13","No","Saturday","Good",5.16,1.0016,38,19.9995,101
"Jan","14","No","Saturday","Good",6.1,3.0014,39,19.0012,118
"Jan","16","No","Saturday","Fair",7.98,5.9978,34,12.998,128
"Jan","17","No","Saturday","Fair",7.04,3.998,36,19.0012,83
"Jan","18","No","Saturday","Fair",6.1,3.0014,45,16.9979,84
"Jan","19","No","Saturday","Fair",7.04,3.998,39,16.9979,74
"Jan","20","No","Saturday","Fair",7.04,3.998,39,16.9979,41
"Jan","21","No","Saturday","Fair",7.04,3.998,39,15.0013,57
"Jan","23","No","Saturday","Good",6.1,3.0014,45,19.0012,44
"Jan","0","No","Sunday","Good",4.22,3.998,56,0,39
"Jan","1","No","Sunday","Good",4.22,1.9982,56,8.9981,23
"Jan","3","No","Sunday","Good",2.34,1.9982,69,0,15
"Jan","5","No","Sunday","Fair",4.22,1.0016,56,11.0014,2
"Jan","6","No","Sunday","Fair",4.22,1.0016,56,11.0014,1
"Jan","7","No","Sunday","Fair",3.28,-2.0014,56,19.9995,3
"Jan","8","No","Sunday","Good",2.34,-2.0014,55,19.0012,18
"Jan","9","No","Sunday","Good",2.34,-2.0014,51,16.9979,32
"Jan","11","No","Sunday","Good",3.28,-0.998200000000001,44,16.9979,93
"Jan","12","No","Sunday","Good",3.28,-2.0014,41,19.0012,104
"Jan","13","No","Sunday","Good",4.22,-0.998200000000001,35,19.9995,118
"Jan","14","No","Sunday","Good",5.16,1.9982,36,16.9979,91
"Jan","15","No","Sunday","Good",4.22,-0.00159999999999982,38,16.9979,113
"Jan","17","No","Sunday","Good",2.34,-2.0014,37,16.9979,105
"Jan","18","No","Sunday","Good",1.4,-2.0014,40,11.0014,67
"Jan","19","No","Sunday","Good",0.459999999999999,-2.998,47,8.9981,61
"Jan","20","No","Sunday","Good",0.459999999999999,-2.998,47,11.0014,57
"Jan","21","No","Sunday","Good",0.459999999999999,-2.998,51,11.0014,28
"Jan","22","No","Sunday","Fair",1.4,-2.0014,49,8.9981,21
"Jan","0","Yes","Monday","Fair",1.4,-2.998,47,15.0013,17
"Jan","1","Yes","Monday","Fair",1.4,-2.998,44,12.998,16
"Jan","2","Yes","Monday","Fair",0.459999999999999,-4.9978,43,16.9979,8
"Jan","3","Yes","Monday","Fair",0.459999999999999,-4.0012,43,12.998,2
"Jan","5","Yes","Monday","Fair",0.459999999999999,-2.998,43,11.0014,1
"Jan","6","Yes","Monday","Fair",0.459999999999999,-4.0012,43,12.998,5
"Jan","7","Yes","Monday","Fair",-0.48,-4.0012,50,8.9981,13
"Jan","8","Yes","Monday","Fair",-0.48,-6.001,47,15.0013,33
"Jan","10","Yes","Monday","Fair",-0.48,-6.001,50,16.9979,57
"Jan","12","Yes","Monday","Fair",0.459999999999999,-2.998,47,8.9981,80
"Jan","13","Yes","Monday","Fair",0.459999999999999,-2.998,47,8.9981,93
"Jan","14","Yes","Monday","Fair",0.459999999999999,-2.0014,43,7.0015,86
"Jan","15","Yes","Monday","Fair",1.4,-2.0014,47,11.0014,93
"Jan","18","Yes","Monday","Fair",0.459999999999999,-4.9978,55,16.9979,92
"Jan","22","Yes","Monday","Bad",-1.42,-8.0008,93,16.9979,13
"Jan","23","Yes","Monday","Bad",-0.48,-6.9976,86,19.0012,4
"Jan","12","No","Tuesday","Fair",1.4,-4.0012,86,22.0028,3
"Jan","13","No","Tuesday","Fair",1.4,-2.998,86,15.0013,22
"Jan","14","No","Tuesday","Fair",2.34,-0.998200000000001,80,11.0014,28
"Jan","15","No","Tuesday","Fair",2.34,-0.998200000000001,87,11.0014,35
"Jan","16","No","Tuesday","Fair",2.34,-0.998200000000001,87,12.998,61
"Jan","18","No","Tuesday","Fair",2.34,-0.998200000000001,80,11.0014,133
"Jan","19","No","Tuesday","Fair",2.34,-0.998200000000001,80,8.9981,99
"Jan","20","No","Tuesday","Fair",2.34,1.9982,87,0,83
"Jan","21","No","Tuesday","Fair",2.34,-0.00159999999999982,93,7.0015,41
"Jan","22","No","Tuesday","Fair",2.34,1.0016,93,6.0032,33
"Jan","23","No","Tuesday","Fair",2.34,1.9982,93,0,20
"Jan","0","No","Wednesday","Fair",2.34,1.9982,93,0,3
"Jan","1","No","Wednesday","Bad",2.34,-0.998200000000001,93,8.9981,7
"Jan","4","No","Wednesday","Bad",2.34,-0.998200000000001,93,8.9981,2
"Jan","5","No","Wednesday","Fair",2.34,1.0016,93,6.0032,7
"Jan","6","No","Wednesday","Fair",2.34,1.0016,93,6.0032,32
"Jan","7","No","Wednesday","Fair",3.28,1.0016,92,7.0015,90
"Jan","8","No","Wednesday","Fair",3.28,1.0016,93,7.0015,197
"Jan","9","No","Wednesday","Fair",3.28,1.0016,93,7.0015,109
"Jan","10","No","Wednesday","Fair",4.22,1.9982,93,8.9981,47
"Jan","12","No","Wednesday","Fair",6.1,5.0012,81,6.0032,70
"Jan","13","No","Wednesday","Good",10.8,11.0006,62,19.0012,78
"Jan","14","No","Wednesday","Good",10.8,11.0006,58,16.9979,75
"Jan","15","No","Wednesday","Good",10.8,11.0006,54,19.0012,82
"Jan","16","No","Wednesday","Good",9.86,9.9974,58,26.0027,104
"Jan","17","No","Wednesday","Good",8.92,5.9978,57,22.0028,197
"Jan","20","No","Wednesday","Good",7.04,3.998,49,19.9995,76
"Jan","21","No","Wednesday","Good",7.04,3.0014,49,27.9993,59
"Jan","22","No","Wednesday","Good",6.1,3.998,52,11.0014,59
"Jan","23","No","Wednesday","Good",6.1,1.9982,52,31.0009,28
"Jan","0","No","Thursday","Good",4.22,-0.998200000000001,56,26.0027,13
"Jan","1","No","Thursday","Good",4.22,1.9982,56,0,5
"Jan","2","No","Thursday","Good",4.22,1.9982,56,0,2
"Jan","3","No","Thursday","Good",4.22,1.0016,56,11.0014,1
"Jan","4","No","Thursday","Good",4.22,1.0016,56,11.0014,1
"Jan","5","No","Thursday","Good",3.28,-0.998200000000001,60,15.0013,6
"Jan","7","No","Thursday","Good",2.34,-2.0014,55,15.0013,101
"Jan","9","No","Thursday","Fair",3.28,-0.998200000000001,52,15.0013,143
"Jan","10","No","Thursday","Good",4.22,-0.998200000000001,48,19.9995,57
"Jan","11","No","Thursday","Fair",5.16,1.9982,45,11.0014,68
"Jan","12","No","Thursday","Fair",6.1,5.9978,42,0,84
"Jan","13","No","Thursday","Fair",5.16,3.0014,45,7.0015,98
"Jan","14","No","Thursday","Fair",6.1,3.998,45,8.9981,81
"Jan","15","No","Thursday","Fair",7.04,5.0012,45,12.998,70
"Jan","16","No","Thursday","Fair",6.1,3.998,49,8.9981,91
"Jan","17","No","Thursday","Fair",6.1,5.0012,49,7.0015,215
"Jan","18","No","Thursday","Fair",4.22,1.0016,56,12.998,185
"Jan","22","No","Thursday","Fair",3.28,-2.0014,65,19.0012,56
"Jan","23","No","Thursday","Fair",3.28,-2.0014,65,22.0028,31
"Jan","0","No","Friday","Fair",3.28,-0.998200000000001,70,16.9979,21
"Jan","1","No","Friday","Fair",3.28,-0.998200000000001,70,16.9979,6
"Jan","2","No","Friday","Bad",3.28,-0.00159999999999982,75,11.0014,2
"Jan","3","No","Friday","Bad",2.34,-2.0014,80,19.9995,1
"Jan","4","No","Friday","Fair",2.34,1.0016,87,6.0032,1
"Jan","5","No","Friday","Good",3.28,-2.998,60,27.9993,5
"Jan","6","No","Friday","Good",2.34,-2.0014,55,16.9979,27
"Jan","7","No","Friday","Good",1.4,-4.0012,51,19.0012,68
"Jan","8","No","Friday","Good",1.4,-4.0012,47,22.0028,217
"Jan","9","No","Friday","Good",1.4,-4.0012,51,23.9994,166
"Jan","10","No","Friday","Good",1.4,-4.9978,47,31.0009,63
"Jan","11","No","Friday","Good",2.34,-4.0012,41,31.0009,59
"Jan","12","No","Friday","Good",2.34,-4.0012,27,39.0007,78
"Jan","13","No","Friday","Good",1.4,-6.001,21,39.0007,73
"Jan","14","No","Friday","Good",1.4,-6.001,25,35.0008,62
"Jan","15","No","Friday","Good",-0.48,-8.0008,26,30.0026,65
"Jan","16","No","Friday","Good",-0.48,-6.9976,26,23.9994,97
"Jan","18","No","Friday","Good",-2.36,-8.0008,30,16.9979,120
"Jan","19","No","Friday","Good",-2.36,-8.9974,30,22.0028,96
"Jan","20","No","Friday","Good",-3.3,-10.9972,33,27.9993,53
"Jan","21","No","Friday","Good",-4.24,-10.9972,38,19.0012,41
"Jan","22","No","Friday","Good",-5.18,-14.0002,41,26.0027,34
"Jan","23","No","Friday","Good",-5.18,-12.997,38,22.0028,27
"Jan","0","No","Saturday","Good",-6.12,-14.0002,45,16.9979,13
"Jan","2","No","Saturday","Fair",-6.12,-14.0002,41,16.9979,11
"Jan","4","No","Saturday","Fair",-7.06,-14.9968,48,19.9995,3
"Jan","6","No","Saturday","Fair",-7.06,-14.0002,44,15.0013,2
"Jan","8","No","Saturday","Good",-7.06,-16,44,22.0028,27
"Jan","9","No","Saturday","Good",-6.12,-14.0002,41,16.9979,40
"Jan","10","No","Saturday","Fair",-6.12,-12.0004,41,11.0014,53
"Jan","11","No","Saturday","Fair",-5.18,-10.9972,38,8.9981,63
"Jan","12","No","Saturday","Fair",-5.18,-8.9974,38,7.0015,70
"Jan","13","No","Saturday","Good",-4.24,-4.9978,35,0,84
"Jan","14","No","Saturday","Good",-3.3,-6.9976,33,7.0015,75
"Jan","16","No","Saturday","Good",-2.36,-6.9976,28,12.998,83
"Jan","17","No","Saturday","Good",-2.36,-2.998,28,0,67
"Jan","19","No","Saturday","Good",-4.24,-8.9974,35,8.9981,59
"Jan","20","No","Saturday","Good",-5.18,-10.9972,45,11.0014,45
"Jan","21","No","Saturday","Good",-5.18,-8.9974,41,6.0032,39
"Jan","22","No","Saturday","Good",-5.18,-6.001,49,0,30
"Jan","23","No","Saturday","Good",-6.12,-10.9972,57,7.0015,33
"Jan","0","No","Sunday","Good",-6.12,-10.9972,57,7.0015,22
"Jan","1","No","Sunday","Good",-6.12,-10.9972,57,7.0015,13
"Jan","2","No","Sunday","Good",-7.06,-12.0004,62,8.9981,18
"Jan","3","No","Sunday","Good",-7.06,-12.0004,62,8.9981,5
"Jan","6","No","Sunday","Fair",-6.12,-10.9972,57,7.0015,1
"Jan","7","No","Sunday","Good",-4.24,-8.9974,58,11.0014,2
"Jan","8","No","Sunday","Good",-5.18,-10.9972,62,11.0014,19
"Jan","9","No","Sunday","Good",-3.3,-10.9972,54,23.9994,28
"Jan","10","No","Sunday","Good",-1.42,-8.9974,46,26.0027,58
"Jan","12","No","Sunday","Good",-0.48,-8.0008,37,31.0009,116
"Jan","13","No","Sunday","Good",-1.42,-8.9974,33,26.0027,87
"Jan","14","No","Sunday","Good",-0.48,-6.9976,28,23.9994,110
"Jan","15","No","Sunday","Good",-0.48,-6.9976,28,23.9994,77
"Jan","16","No","Sunday","Good",-0.48,-6.9976,26,22.0028,65
"Jan","17","No","Sunday","Good",-1.42,-8.9974,26,26.0027,55
"Jan","18","No","Sunday","Good",-2.36,-8.0008,30,16.9979,49
"Jan","19","No","Sunday","Good",-2.36,-8.0008,30,19.0012,50
"Jan","20","No","Sunday","Good",-3.3,-8.9974,36,16.9979,35
"Jan","22","No","Sunday","Good",-4.24,-10.0006,38,12.998,28
"Jan","23","No","Sunday","Good",-5.18,-12.0004,41,15.0013,21
"Jan","0","No","Monday","Good",-5.18,-12.0004,41,12.998,7
"Jan","1","No","Monday","Good",-6.12,-12.997,45,12.998,1
"Jan","3","No","Monday","Good",-6.12,-14.0002,45,16.9979,1
"Jan","5","No","Monday","Good",-7.06,-12.0004,48,8.9981,5
"Jan","6","No","Monday","Good",-7.06,-10.9972,48,6.0032,15
"Jan","7","No","Monday","Good",-7.06,-8.0008,48,0,84
"Jan","8","No","Monday","Good",-6.12,-6.9976,49,0,177
"Jan","9","No","Monday","Good",-5.18,-6.001,41,0,102
"Jan","10","No","Monday","Good",-3.3,-6.9976,42,0,40
"Jan","11","No","Monday","Good",-3.3,-8.0008,46,8.9981,46
"Jan","12","No","Monday","Fair",-2.36,-6.9976,42,12.998,63
"Jan","13","No","Monday","Fair",-1.42,-6.9976,43,15.0013,60
"Jan","14","No","Monday","Fair",-1.42,-6.9976,46,15.0013,45
"Jan","15","No","Monday","Good",-0.48,-4.9978,40,11.0014,57
"Jan","16","No","Monday","Good",-0.48,-6.001,47,16.9979,70
"Jan","17","No","Monday","Good",-1.42,-8.0008,50,16.9979,184
"Jan","18","No","Monday","Good",-1.42,-6.9976,59,12.998,153
"Jan","19","No","Monday","Good",-1.42,-6.001,54,11.0014,106
"Jan","20","No","Monday","Good",-1.42,-6.9976,59,12.998,81
"Jan","21","No","Monday","Good",-1.42,-6.001,63,11.0014,59
"Jan","22","No","Monday","Fair",-1.42,-6.9976,63,15.0013,35
"Jan","23","No","Monday","Fair",-0.48,-6.001,64,16.9979,24
"Jan","0","No","Tuesday","Fair",-0.48,-6.9976,69,19.0012,9
"Jan","1","No","Tuesday","Fair",-0.48,-4.9978,69,11.0014,5
"Jan","2","No","Tuesday","Good",-0.48,-6.001,69,15.0013,2
"Jan","4","No","Tuesday","Good",-1.42,-4.9978,74,7.0015,1
"Jan","7","No","Tuesday","Good",-0.48,-6.001,74,15.0013,108
"Jan","8","No","Tuesday","Fair",-0.48,-4.0012,74,8.9981,238
"Jan","9","No","Tuesday","Fair",1.4,-0.998200000000001,64,6.0032,144
"Jan","10","No","Tuesday","Fair",2.34,-0.00159999999999982,60,7.0015,55
"Jan","12","No","Tuesday","Fair",4.22,3.0014,56,6.0032,106
"Jan","14","No","Tuesday","Fair",6.1,5.9978,45,0,68
"Jan","15","No","Tuesday","Fair",7.04,7.001,42,0,84
"Jan","18","No","Tuesday","Fair",6.1,5.0012,49,6.0032,225
"Jan","19","No","Tuesday","Fair",4.22,1.0016,65,11.0014,146
"Jan","20","No","Tuesday","Good",3.28,-0.998200000000001,65,12.998,119
"Jan","21","No","Tuesday","Good",3.28,-0.998200000000001,65,12.998,45
"Jan","22","No","Tuesday","Good",2.34,-0.998200000000001,64,11.0014,53
"Jan","23","No","Tuesday","Fair",2.34,-0.998200000000001,64,11.0014,40
"Jan","0","No","Wednesday","Fair",2.34,-0.998200000000001,69,8.9981,17
"Jan","2","No","Wednesday","Bad",2.34,-0.998200000000001,69,12.998,10
"Jan","5","No","Wednesday","Bad",1.4,-4.0012,86,19.0012,1
"Jan","6","No","Wednesday","Bad",1.4,-4.0012,86,19.0012,8
"Jan","7","No","Wednesday","Bad",2.34,-2.0014,87,19.9995,30
"Jan","8","No","Wednesday","Bad",2.34,-2.0014,87,19.9995,72
"Jan","10","No","Wednesday","Bad",2.34,-2.0014,93,19.0012,28
"Jan","12","No","Wednesday","Bad",2.34,-2.998,93,22.0028,48
"Jan","13","No","Wednesday","Bad",2.34,-2.998,93,22.0028,47
"Jan","14","No","Wednesday","Bad",2.34,-2.998,93,23.9994,36
"Jan","15","No","Wednesday","Bad",2.34,-4.0012,93,31.0009,43
"Jan","16","No","Wednesday","Very Bad",2.34,-2.998,93,22.0028,36
"Jan","17","No","Wednesday","Bad",1.4,-4.0012,93,23.9994,26
"Jan","16","No","Thursday","Good",2.34,-0.998200000000001,55,12.998,24
"Jan","17","No","Thursday","Good",2.34,-0.00159999999999982,55,7.0015,84
"Jan","18","No","Thursday","Good",1.4,-0.998200000000001,69,6.0032,104
"Jan","19","No","Thursday","Good",1.4,-0.998200000000001,69,6.0032,79
"Jan","20","No","Thursday","Good",0.459999999999999,-2.0014,74,6.0032,59
"Jan","21","No","Thursday","Good",0.459999999999999,-2.0014,74,6.0032,38
"Jan","23","No","Thursday","Good",0.459999999999999,-2.998,80,11.0014,16
"Jan","0","No","Friday","Fair",1.4,-2.0014,75,8.9981,9
"Jan","1","No","Friday","Fair",1.4,-2.0014,75,8.9981,3
"Jan","2","No","Friday","Fair",1.4,-2.0014,75,11.0014,2
"Jan","5","No","Friday","Fair",0.459999999999999,-2.0014,80,7.0015,4
"Jan","7","No","Friday","Fair",-0.48,-2.998,86,6.0032,60
"Jan","9","No","Friday","Bad",0.459999999999999,-2.0014,86,6.0032,101
"Jan","11","No","Friday","Bad",0.459999999999999,-2.0014,93,7.0015,30
"Jan","13","No","Friday","Bad",0.459999999999999,-2.0014,93,7.0015,31
"Jan","15","No","Friday","Fair",1.4,1.0016,86,0,41
"Jan","16","No","Friday","Good",2.34,1.9982,80,0,80
"Jan","17","No","Friday","Good",3.28,-0.00159999999999982,75,8.9981,149
"Jan","18","No","Friday","Good",3.28,-0.998200000000001,75,12.998,109
"Jan","19","No","Friday","Fair",3.28,-0.00159999999999982,75,8.9981,89
"Jan","20","No","Friday","Fair",3.28,-0.998200000000001,70,12.998,62
"Jan","21","No","Friday","Fair",2.34,-0.998200000000001,75,8.9981,58
"Jan","23","No","Friday","Good",3.28,-0.998200000000001,60,15.0013,23
"Jan","0","No","Saturday","Good",2.34,-2.998,64,23.9994,28
"Jan","3","No","Saturday","Good",1.4,-2.0014,64,8.9981,8
"Jan","4","No","Saturday","Good",-0.48,-4.0012,69,7.0015,3
"Jan","6","No","Saturday","Good",-0.48,-4.0012,64,8.9981,2
"Jan","7","No","Saturday","Good",-0.48,-4.0012,59,7.0015,5
"Jan","8","No","Saturday","Good",0.459999999999999,-2.998,55,11.0014,34
"Jan","9","No","Saturday","Good",0.459999999999999,-2.0014,59,6.0032,34
"Jan","10","No","Saturday","Fair",0.459999999999999,-2.0014,64,7.0015,55
"Jan","11","No","Saturday","Fair",0.459999999999999,-2.998,64,8.9981,64
"Jan","14","No","Saturday","Fair",2.34,-0.998200000000001,60,8.9981,99
"Jan","16","No","Saturday","Good",3.28,-0.00159999999999982,60,11.0014,107
"Jan","18","No","Saturday","Good",2.34,-0.998200000000001,69,8.9981,68
"Jan","20","No","Saturday","Good",0.459999999999999,-2.0014,74,6.0032,43
"Jan","21","No","Saturday","Good",0.459999999999999,-2.0014,74,6.0032,36
"Jan","22","No","Saturday","Good",-0.48,-2.998,80,6.0032,32
"Jan","23","No","Saturday","Good",-0.48,-2.998,80,6.0032,33
"Jan","0","No","Sunday","Good",-0.48,-4.0012,80,7.0015,33
"Jan","1","No","Sunday","Good",-1.42,-2.0014,80,0,29
"Jan","2","No","Sunday","Good",-0.48,-0.998200000000001,80,0,11
"Jan","3","No","Sunday","Good",-1.42,-2.0014,93,0,8
"Jan","4","No","Sunday","Good",-1.42,-2.0014,93,0,1
"Jan","7","No","Sunday","Good",-1.42,-2.0014,86,0,3
"Jan","8","No","Sunday","Fair",-1.42,-2.0014,86,0,12
"Jan","10","No","Sunday","Fair",0.459999999999999,-0.00159999999999982,80,0,64
"Jan","11","No","Sunday","Good",2.34,1.9982,75,0,59
"Jan","12","No","Sunday","Good",6.1,5.0012,52,7.0015,97
"Jan","14","No","Sunday","Good",5.16,3.998,61,6.0032,122
"Jan","15","No","Sunday","Good",6.1,5.9978,56,0,109
"Jan","18","No","Sunday","Good",4.22,1.0016,65,11.0014,65
"Jan","19","No","Sunday","Good",4.22,1.0016,65,12.998,55
"Jan","21","No","Sunday","Fair",3.28,-0.00159999999999982,70,11.0014,28
"Jan","23","No","Sunday","Fair",3.28,-2.0014,65,19.0012,21
"Jan","0","No","Monday","Fair",3.28,-0.998200000000001,65,15.0013,7
"Jan","1","No","Monday","Good",2.34,-2.0014,64,16.9979,7
"Jan","2","No","Monday","Good",2.34,-0.998200000000001,64,12.998,1
"Jan","3","No","Monday","Good",2.34,-0.998200000000001,64,12.998,2
"Jan","4","No","Monday","Good",1.4,-2.998,59,15.0013,2
"Jan","5","No","Monday","Good",0.459999999999999,-4.9978,64,19.0012,8
"Jan","6","No","Monday","Good",-0.48,-6.9976,69,22.0028,37
"Jan","7","No","Monday","Fair",-0.48,-6.9976,64,19.0012,72
"Jan","8","No","Monday","Fair",-0.48,-6.9976,59,19.0012,185
"Jan","10","No","Monday","Fair",-0.48,-6.001,59,12.998,69
"Jan","11","No","Monday","Fair",-0.48,-6.001,59,12.998,48
"Jan","13","No","Monday","Fair",-0.48,-0.998200000000001,59,0,54
"Jan","14","No","Monday","Fair",0.459999999999999,-2.998,55,8.9981,86
"Jan","15","No","Monday","Fair",-0.48,-4.0012,59,8.9981,44
"Jan","16","No","Monday","Fair",-0.48,-4.0012,56,12.998,86
"Jan","17","No","Monday","Fair",-0.48,-6.001,59,12.998,161
"Jan","18","No","Monday","Fair",-0.48,-6.001,55,15.0013,156
"Jan","19","No","Monday","Good",6.1,5.0012,61,7.0015,111
"Jan","20","No","Monday","Bad",-0.48,-4.9978,59,11.0014,78
"Jan","21","No","Monday","Bad",-0.48,-2.998,59,6.0032,56
"Jan","23","No","Monday","Fair",-0.48,-2.998,64,6.0032,17
"Feb","0","No","Tuesday","Fair",-0.48,-4.0012,64,7.0015,8
"Feb","2","No","Tuesday","Fair",-0.48,-0.998200000000001,69,0,2
"Feb","5","No","Tuesday","Bad",-1.42,-2.0014,93,0,3
"Feb","6","No","Tuesday","Bad",-1.42,-2.0014,93,0,22
"Feb","7","No","Tuesday","Bad",-0.48,-0.998200000000001,93,0,52
"Feb","8","No","Tuesday","Bad",-0.48,-0.998200000000001,93,0,135
"Feb","9","No","Tuesday","Fair",-0.48,-0.998200000000001,93,0,116
"Feb","10","No","Tuesday","Fair",-0.48,-0.998200000000001,93,0,47
"Feb","11","No","Tuesday","Fair",0.459999999999999,-0.00159999999999982,86,0,51
"Feb","12","No","Tuesday","Fair",1.4,1.0016,86,0,55
"Feb","13","No","Tuesday","Fair",1.4,1.0016,86,0,52
"Feb","14","No","Tuesday","Fair",2.34,1.0016,80,6.0032,54
"Feb","15","No","Tuesday","Fair",3.28,3.0014,75,0,52
"Feb","17","No","Tuesday","Fair",3.28,3.0014,75,0,176
"Feb","18","No","Tuesday","Fair",3.28,1.0016,81,7.0015,168
"Feb","19","No","Tuesday","Fair",3.28,-0.00159999999999982,81,8.9981,108
"Feb","20","No","Tuesday","Fair",2.34,-0.998200000000001,87,8.9981,74
"Feb","21","No","Tuesday","Fair",2.34,-0.998200000000001,87,8.9981,64
"Feb","23","No","Tuesday","Bad",1.4,-2.998,93,12.998,16
"Feb","0","No","Wednesday","Bad",2.34,-0.00159999999999982,93,7.0015,2
"Feb","1","No","Wednesday","Bad",2.34,-0.998200000000001,93,12.998,3
"Feb","2","No","Wednesday","Bad",2.34,-0.998200000000001,93,8.9981,4
"Feb","3","No","Wednesday","Bad",2.34,-0.998200000000001,93,8.9981,1
"Feb","6","No","Wednesday","Bad",2.34,-0.00159999999999982,93,7.0015,18
"Feb","7","No","Wednesday","Bad",2.34,-2.0014,93,15.0013,49
"Feb","8","No","Wednesday","Bad",2.34,-2.0014,93,15.0013,155
"Feb","10","No","Wednesday","Fair",2.34,1.9982,100,0,61
"Feb","12","No","Wednesday","Fair",3.28,-0.998200000000001,93,15.0013,64
"Feb","13","No","Wednesday","Good",7.98,5.9978,93,11.0014,75
"Feb","14","No","Wednesday","Good",9.86,9.9974,82,26.0027,63
"Feb","16","No","Wednesday","Good",8.92,5.9978,71,19.9995,103
"Feb","17","No","Wednesday","Good",8.92,5.0012,53,35.0008,190
"Feb","18","No","Wednesday","Good",7.98,3.0014,42,36.9974,182
"Feb","19","No","Wednesday","Good",5.16,-0.00159999999999982,45,32.9975,91
"Feb","20","No","Wednesday","Good",3.28,-2.998,48,36.9974,75
"Feb","21","No","Wednesday","Good",2.34,-2.998,47,22.0028,63
"Feb","23","No","Wednesday","Good",1.4,-4.9978,44,30.0026,32
"Feb","3","No","Thursday","Good",0.459999999999999,-4.9978,43,16.9979,1
"Feb","5","No","Thursday","Good",-0.48,-6.9976,50,19.9995,2
"Feb","7","No","Thursday","Good",-1.42,-8.0008,50,22.0028,87
"Feb","8","No","Thursday","Good",-1.42,-8.0008,50,23.9994,188
"Feb","9","No","Thursday","Good",-0.48,-6.9976,47,19.9995,133
"Feb","10","No","Thursday","Good",0.459999999999999,-6.001,43,22.0028,52
"Feb","11","No","Thursday","Good",0.459999999999999,-6.9976,43,30.0026,64
"Feb","12","No","Thursday","Good",1.4,-4.0012,40,23.9994,69
"Feb","13","No","Thursday","Good",1.4,-4.9978,40,27.9993,51
"Feb","14","No","Thursday","Good",2.34,-2.998,37,26.0027,47
"Feb","15","No","Thursday","Good",2.34,-2.998,37,22.0028,60
"Feb","16","No","Thursday","Good",2.34,-2.0014,37,16.9979,78
"Feb","17","No","Thursday","Good",1.4,-2.998,40,12.998,175
"Feb","18","No","Thursday","Good",1.4,-2.0014,40,11.0014,147
"Feb","20","No","Thursday","Good",1.4,-0.998200000000001,47,6.0032,109
"Feb","21","No","Thursday","Good",0.459999999999999,-2.0014,55,7.0015,54
"Feb","23","No","Thursday","Good",1.4,-0.998200000000001,47,7.0015,38
"Feb","1","No","Friday","Fair",-0.48,-0.998200000000001,59,0,7
"Feb","2","No","Friday","Fair",-1.42,-4.9978,63,7.0015,1
"Feb","3","No","Friday","Fair",-1.42,-4.9978,63,7.0015,1
"Feb","5","No","Friday","Fair",-1.42,-6.001,63,8.9981,7
"Feb","6","No","Friday","Fair",-0.48,-0.998200000000001,55,0,28
"Feb","7","No","Friday","Good",-1.42,-2.0014,59,0,87
"Feb","8","No","Friday","Good",-1.42,-6.001,74,8.9981,220
"Feb","10","No","Friday","Fair",1.4,-2.0014,51,8.9981,51
"Feb","11","No","Friday","Good",2.34,-0.998200000000001,51,11.0014,64
"Feb","12","No","Friday","Fair",3.28,-0.00159999999999982,48,11.0014,86
"Feb","13","No","Friday","Fair",4.22,1.0016,50,15.0013,82
"Feb","15","No","Friday","Fair",5.16,1.9982,48,16.9979,90
"Feb","16","No","Friday","Fair",6.1,3.0014,42,15.0013,99
"Feb","17","No","Friday","Fair",4.22,1.9982,56,8.9981,205
"Feb","18","No","Friday","Fair",3.28,1.0016,60,7.0015,155
"Feb","19","No","Friday","Fair",3.28,-0.00159999999999982,65,8.9981,103
"Feb","20","No","Friday","Fair",3.28,-0.00159999999999982,65,11.0014,71
"Feb","21","No","Friday","Fair",3.28,-0.00159999999999982,70,11.0014,43
"Feb","22","No","Friday","Fair",3.28,-0.00159999999999982,65,11.0014,46
"Feb","23","No","Friday","Fair",3.28,-0.00159999999999982,70,8.9981,31
"Feb","0","No","Saturday","Fair",3.28,-0.00159999999999982,70,11.0014,39
"Feb","1","No","Saturday","Fair",3.28,-0.00159999999999982,65,11.0014,18
"Feb","2","No","Saturday","Fair",3.28,-0.00159999999999982,75,11.0014,17
"Feb","3","No","Saturday","Fair",3.28,-0.00159999999999982,75,11.0014,11
"Feb","4","No","Saturday","Bad",2.34,-0.998200000000001,93,8.9981,8
"Feb","5","No","Saturday","Bad",1.4,-0.998200000000001,100,6.0032,9
"Feb","6","No","Saturday","Bad",1.4,1.0016,100,0,4
"Feb","7","No","Saturday","Bad",2.34,1.0016,93,6.0032,4
"Feb","8","No","Saturday","Bad",1.4,-0.998200000000001,100,6.0032,10
"Feb","9","No","Saturday","Bad",1.4,-0.998200000000001,100,6.0032,20
"Feb","10","No","Saturday","Bad",1.4,-2.0014,100,8.9981,34
"Feb","12","No","Saturday","Bad",2.34,-0.998200000000001,100,11.0014,52
"Feb","13","No","Saturday","Bad",2.34,-0.998200000000001,100,11.0014,72
"Feb","14","No","Saturday","Bad",2.34,1.9982,100,0,55
"Feb","15","No","Saturday","Bad",2.34,1.9982,100,0,60
"Feb","17","No","Saturday","Fair",3.28,-2.0014,100,19.0012,78
"Feb","20","No","Saturday","Good",6.1,3.0014,87,16.9979,69
"Feb","21","No","Saturday","Good",4.22,1.0016,100,12.998,56
"Feb","22","No","Saturday","Good",4.22,1.9982,93,8.9981,45
"Feb","23","No","Saturday","Good",4.22,1.0016,93,15.0013,59
"Feb","0","No","Sunday","Good",4.22,1.0016,70,12.998,39
"Feb","1","No","Sunday","Good",4.22,-0.998200000000001,65,27.9993,44
"Feb","3","No","Sunday","Good",4.22,3.0014,60,6.0032,13
"Feb","5","No","Sunday","Good",4.22,1.0016,60,15.0013,1
"Feb","6","No","Sunday","Good",4.22,1.0016,60,15.0013,1
"Feb","7","No","Sunday","Good",3.28,-0.00159999999999982,65,11.0014,8
"Feb","8","No","Sunday","Good",3.28,1.0016,65,7.0015,23
"Feb","9","No","Sunday","Good",5.16,3.0014,56,7.0015,45
"Feb","10","No","Sunday","Good",6.1,3.0014,52,16.9979,89
"Feb","11","No","Sunday","Good",7.04,3.998,49,16.9979,117
"Feb","14","No","Sunday","Good",7.98,7.001,46,6.0032,161
"Feb","15","No","Sunday","Good",7.98,7.001,46,6.0032,182
"Feb","17","No","Sunday","Good",7.98,7.9976,46,0,121
"Feb","18","No","Sunday","Good",6.1,3.998,56,11.0014,78
"Feb","19","No","Sunday","Good",5.16,3.0014,61,8.9981,21
"Feb","21","No","Sunday","Good",4.22,3.998,60,0,27
"Feb","23","No","Sunday","Good",3.28,3.0014,65,0,30
"Feb","0","No","Monday","Good",3.28,3.0014,65,0,15
"Feb","1","No","Monday","Good",2.34,1.9982,75,0,5
"Feb","4","No","Monday","Good",1.4,1.0016,86,0,2
"Feb","5","No","Monday","Good",1.4,1.0016,86,0,10
"Feb","7","No","Monday","Good",0.459999999999999,-0.00159999999999982,86,0,95
"Feb","8","No","Monday","Fair",-0.48,-0.998200000000001,100,0,230
"Feb","9","No","Monday","Good",2.34,1.9982,80,0,118
"Feb","10","No","Monday","Good",3.28,1.0016,75,7.0015,55
"Feb","11","No","Monday","Good",6.1,5.0012,65,6.0032,47
"Feb","12","No","Monday","Fair",7.04,7.001,62,0,66
"Feb","13","No","Monday","Fair",8.92,7.9976,57,6.0032,64
"Feb","14","No","Monday","Fair",8.92,7.9976,57,6.0032,60
"Feb","17","No","Monday","Fair",7.04,5.0012,70,11.0014,216
"Feb","18","No","Monday","Fair",7.98,5.9978,66,8.9981,175
"Feb","19","No","Monday","Fair",7.04,7.001,70,0,128
"Feb","20","No","Monday","Fair",7.04,5.9978,70,7.0015,88
"Feb","21","No","Monday","Good",7.04,7.001,70,0,78
"Feb","22","No","Monday","Good",5.16,3.998,81,6.0032,37
"Feb","23","No","Monday","Fair",6.1,5.9978,81,0,25
"Feb","0","No","Tuesday","Fair",5.16,5.0012,87,0,10
"Feb","2","No","Tuesday","Fair",4.22,1.9982,93,7.0015,2
"Feb","3","No","Tuesday","Bad",5.16,1.9982,93,11.0014,1
"Feb","4","No","Tuesday","Good",4.22,1.0016,93,11.0014,3
"Feb","5","No","Tuesday","Good",4.22,-0.998200000000001,81,22.0028,2
"Feb","6","No","Tuesday","Good",4.22,-0.998200000000001,70,22.0028,39
"Feb","7","No","Tuesday","Good",3.28,-2.998,65,27.9993,100
"Feb","9","No","Tuesday","Good",3.28,-2.998,52,32.9975,135
"Feb","11","No","Tuesday","Good",2.34,-4.0012,47,31.0009,50
"Feb","14","No","Tuesday","Good",2.34,-2.998,37,27.9993,64
"Feb","15","No","Tuesday","Good",2.34,-2.998,35,26.0027,51
"Feb","16","No","Tuesday","Good",2.34,-4.0012,35,35.0008,83
"Feb","17","No","Tuesday","Good",2.34,-4.0012,32,39.0007,176
"Feb","18","No","Tuesday","Good",1.4,-4.0012,32,26.0027,152
"Feb","20","No","Tuesday","Good",-0.48,-6.9976,40,22.0028,56
"Feb","21","No","Tuesday","Good",-1.42,-8.9974,33,31.0009,54
"Feb","23","No","Tuesday","Good",-2.36,-8.9974,33,22.0028,12
"Feb","0","No","Wednesday","Good",-3.3,-10.9972,36,23.9994,17
"Feb","1","No","Wednesday","Good",-3.3,-8.9974,36,15.0013,7
"Feb","2","No","Wednesday","Good",-4.24,-10.9972,38,19.0012,3
"Feb","3","No","Wednesday","Good",-5.18,-10.9972,45,8.9981,2
"Feb","5","No","Wednesday","Good",-5.18,-8.9974,45,7.0015,7
"Feb","7","No","Wednesday","Good",-5.18,-8.9974,49,7.0015,99
"Feb","8","No","Wednesday","Good",-3.3,-6.9976,42,0,199
"Feb","10","No","Wednesday","Good",-1.42,-4.0012,36,0,59
"Feb","11","No","Wednesday","Fair",-1.42,-6.001,43,11.0014,41
"Feb","13","No","Wednesday","Good",0.459999999999999,-4.9978,40,16.9979,69
"Feb","14","No","Wednesday","Good",1.4,-4.0012,34,19.9995,58
"Feb","15","No","Wednesday","Fair",1.4,-4.0012,34,19.0012,64
"Feb","16","No","Wednesday","Fair",1.4,-2.998,37,16.9979,79
"Feb","17","No","Wednesday","Fair",1.4,-2.998,34,16.9979,166
"Feb","18","No","Wednesday","Fair",0.459999999999999,-4.9978,47,19.9995,170
"Feb","21","No","Wednesday","Fair",-1.42,-6.001,86,11.0014,83
"Feb","22","No","Wednesday","Bad",-0.48,-4.9978,80,11.0014,46
"Feb","23","No","Wednesday","Bad",-0.48,-6.001,80,12.998,37
"Feb","0","No","Thursday","Bad",-1.42,-6.9976,86,12.998,16
"Feb","1","No","Thursday","Bad",-1.42,-6.001,80,8.9981,7
"Feb","4","No","Thursday","Fair",-1.42,-6.9976,59,15.0013,1
"Feb","5","No","Thursday","Fair",-2.36,-8.0008,50,15.0013,6
"Feb","6","No","Thursday","Fair",-2.36,-8.0008,54,19.0012,26
"Feb","7","No","Thursday","Good",-3.3,-10.9972,50,27.9993,99
"Feb","9","No","Thursday","Good",-2.36,-8.9974,42,23.9994,122
"Feb","10","No","Thursday","Good",-2.36,-8.9974,42,19.9995,35
"Feb","13","No","Thursday","Good",0.459999999999999,-4.9978,29,19.9995,62
"Feb","14","No","Thursday","Good",1.4,-4.0012,27,19.0012,48
"Feb","15","No","Thursday","Good",1.4,-2.998,25,16.9979,50
"Feb","16","No","Thursday","Good",1.4,-4.0012,27,19.9995,80
"Feb","17","No","Thursday","Good",0.459999999999999,-4.0012,26,12.998,165
"Feb","18","No","Thursday","Good",-0.48,-4.0012,28,8.9981,160
"Feb","19","No","Thursday","Good",-1.42,-4.9978,28,7.0015,112
"Feb","20","No","Thursday","Good",-1.42,-4.0012,31,6.0032,97
"Feb","21","No","Thursday","Good",-1.42,-2.0014,39,0,72
"Feb","22","No","Thursday","Good",-2.36,-2.998,39,0,51
"Feb","23","No","Thursday","Good",-2.36,-6.001,42,7.0015,34
"Feb","0","No","Friday","Good",-3.3,-6.9976,49,7.0015,14
"Feb","2","No","Friday","Good",-3.3,-6.9976,54,6.0032,3
"Feb","5","No","Friday","Good",-4.24,-8.0008,63,6.0032,4
"Feb","6","No","Friday","Good",-3.3,-4.0012,68,0,24
"Feb","7","No","Friday","Good",-4.24,-4.9978,73,0,74
"Feb","8","No","Friday","Good",-3.3,-8.0008,74,11.0014,216
"Feb","9","No","Friday","Good",-2.36,-8.0008,74,15.0013,140
"Feb","10","No","Friday","Good",-1.42,-6.9976,69,12.998,44
"Feb","12","No","Friday","Good",2.34,-0.998200000000001,47,8.9981,71
"Feb","13","No","Friday","Good",3.28,-0.998200000000001,35,12.998,110
"Feb","14","No","Friday","Good",6.1,3.0014,26,16.9979,84
"Feb","15","No","Friday","Good",7.04,5.0012,21,11.0014,74
"Feb","16","No","Friday","Good",6.1,3.0014,28,12.998,125
"Feb","17","No","Friday","Good",6.1,5.9978,24,0,211
"Feb","19","No","Friday","Good",4.22,3.998,33,0,101
"Feb","21","No","Friday","Good",1.4,-2.0014,59,8.9981,47
"Feb","22","No","Friday","Good",1.4,-0.998200000000001,64,6.0032,43
"Feb","23","No","Friday","Good",0.459999999999999,-0.00159999999999982,69,0,53
"Feb","1","No","Saturday","Good",-1.42,-2.0014,86,0,24
"Feb","2","No","Saturday","Good",-1.42,-2.0014,80,0,15
"Feb","3","No","Saturday","Good",-2.36,-2.998,80,0,10
"Feb","4","No","Saturday","Good",-2.36,-4.9978,74,6.0032,4
"Feb","5","No","Saturday","Good",-2.36,-4.9978,74,6.0032,1
"Feb","6","No","Saturday","Good",-2.36,-6.9976,93,12.998,2
"Feb","7","No","Saturday","Good",-2.36,-6.001,80,7.0015,11
"Feb","8","No","Saturday","Good",-1.42,-6.001,86,8.9981,30
"Feb","10","No","Saturday","Good",2.34,-2.0014,41,16.9979,84
"Feb","11","No","Saturday","Good",6.1,1.9982,28,22.0028,114
"Feb","13","No","Saturday","Good",6.1,1.9982,39,27.9993,135
"Feb","14","No","Saturday","Good",7.98,5.0012,31,19.0012,120
"Feb","16","No","Saturday","Good",7.98,3.998,29,27.9993,145
"Feb","17","No","Saturday","Good",7.04,3.0014,31,35.0008,137
"Feb","18","No","Saturday","Good",5.16,1.0016,38,22.0028,64
"Feb","19","No","Saturday","Good",5.16,1.9982,38,11.0014,41
"Feb","20","No","Saturday","Good",4.22,1.0016,41,15.0013,40
"Feb","21","No","Saturday","Good",4.22,3.998,41,0,51
"Feb","22","No","Saturday","Good",3.28,1.0016,44,6.0032,45
"Feb","23","No","Saturday","Good",2.34,-0.998200000000001,51,8.9981,32
"Feb","1","No","Sunday","Good",1.4,-0.998200000000001,59,6.0032,24
"Feb","2","No","Sunday","Fair",1.4,-0.998200000000001,75,6.0032,20
"Feb","3","No","Sunday","Fair",1.4,-0.998200000000001,69,7.0015,12
"Feb","4","No","Sunday","Fair",1.4,-2.0014,69,11.0014,2
"Feb","6","No","Sunday","Fair",1.4,-2.0014,69,8.9981,5
"Feb","7","No","Sunday","Fair",2.34,1.9982,55,0,3
"Feb","8","No","Sunday","Fair",2.34,-0.998200000000001,64,12.998,12
"Feb","9","No","Sunday","Fair",3.28,-0.998200000000001,60,15.0013,47
"Feb","10","No","Sunday","Good",6.1,1.9982,45,22.0028,105
"Feb","11","No","Sunday","Good",7.04,3.0014,39,30.0026,112
"Feb","12","No","Sunday","Good",8.92,5.0012,32,31.0009,152
"Feb","13","No","Sunday","Good",9.86,9.9974,29,23.9994,154
"Feb","14","No","Sunday","Fair",10.8,11.0006,30,27.9993,161
"Feb","15","No","Sunday","Fair",10.8,11.0006,30,19.9995,162
"Feb","16","No","Sunday","Fair",11.74,11.9972,28,22.0028,134
"Feb","17","No","Sunday","Good",11.74,11.9972,28,22.0028,125
"Feb","20","No","Sunday","Good",10.8,11.0006,35,22.0028,47
"Feb","21","No","Sunday","Good",10.8,11.0006,35,23.9994,51
"Feb","0","No","Monday","Good",9.86,9.9974,37,23.9994,11
"Feb","1","No","Monday","Good",9.86,9.9974,37,23.9994,7
"Feb","3","No","Monday","Good",7.98,5.0012,46,15.0013,2
"Feb","4","No","Monday","Good",7.04,3.998,53,19.0012,2
"Feb","5","No","Monday","Good",7.04,3.998,53,19.0012,3
"Feb","6","No","Monday","Good",7.98,3.998,46,19.9995,26
"Feb","7","No","Monday","Good",7.98,3.998,46,19.9995,98
"Feb","8","No","Monday","Good",9.86,9.9974,40,31.0009,256
"Feb","9","No","Monday","Good",10.8,11.0006,37,26.0027,130
"Feb","10","No","Monday","Good",12.68,13.0004,33,15.0013,55
"Feb","11","No","Monday","Good",16.44,17,23,16.9979,53
"Feb","12","No","Monday","Good",18.32,18.9998,22,30.0026,126
"Feb","13","No","Monday","Good",19.26,20.003,19,26.0027,120
"Feb","14","No","Monday","Good",20.2,22.9994,15,32.9975,90
"Feb","15","No","Monday","Good",18.32,18.9998,21,43.9989,90
"Feb","16","No","Monday","Good",16.44,17,27,31.0009,118
"Feb","17","No","Monday","Good",13.62,13.997,33,40.9973,243
"Feb","19","No","Monday","Good",9.86,9.9974,43,32.9975,98
"Feb","20","No","Monday","Good",8.92,5.0012,46,31.0009,70
"Feb","21","No","Monday","Good",8.92,5.0012,50,35.0008,43
"Feb","23","No","Monday","Good",7.04,3.0014,49,32.9975,20
"Feb","0","No","Tuesday","Good",6.1,1.9982,49,27.9993,19
"Feb","1","No","Tuesday","Good",6.1,-0.00159999999999982,42,51.9987,5
"Feb","2","No","Tuesday","Good",5.16,-0.998200000000001,41,46.0022,3
"Feb","4","No","Tuesday","Good",2.34,-4.0012,37,35.0008,1
"Feb","5","No","Tuesday","Good",2.34,-4.0012,32,31.0009,4
"Feb","6","No","Tuesday","Good",1.4,-4.0012,32,22.0028,30
"Feb","7","No","Tuesday","Good",1.4,-4.0012,32,23.9994,105
"Feb","9","No","Tuesday","Good",2.34,-2.998,29,30.0026,110
"Feb","10","No","Tuesday","Good",3.28,-2.0014,27,19.0012,52
"Feb","12","No","Tuesday","Good",5.16,1.9982,24,16.9979,71
"Feb","13","No","Tuesday","Good",7.04,3.998,21,15.0013,82
"Feb","14","No","Tuesday","Good",7.98,5.0012,19,15.0013,79
"Feb","17","No","Tuesday","Good",7.04,3.998,22,15.0013,206
"Feb","18","No","Tuesday","Good",6.1,3.998,22,8.9981,212
"Feb","19","No","Tuesday","Good",5.16,3.0014,26,8.9981,145
"Feb","20","No","Tuesday","Good",4.22,1.9982,33,7.0015,101
"Feb","22","No","Tuesday","Good",3.28,3.0014,44,0,41
"Feb","23","No","Tuesday","Fair",2.34,1.0016,44,6.0032,20
"Feb","0","No","Wednesday","Good",2.34,1.0016,41,6.0032,15
"Feb","1","No","Wednesday","Good",1.4,-0.998200000000001,44,6.0032,9
"Feb","4","No","Wednesday","Good",1.4,-2.998,51,12.998,1
"Feb","5","No","Wednesday","Good",1.4,-2.998,47,12.998,5
"Feb","6","No","Wednesday","Good",1.4,-2.998,55,15.0013,33
"Feb","8","No","Wednesday","Fair",2.34,-0.998200000000001,55,11.0014,230
"Feb","9","No","Wednesday","Good",3.28,-2.0014,52,19.0012,124
"Feb","10","No","Wednesday","Good",4.22,-0.998200000000001,41,26.0027,69
"Feb","11","No","Wednesday","Good",7.98,3.998,34,19.9995,66
"Feb","12","No","Wednesday","Good",9.86,9.9974,32,22.0028,86
"Feb","14","No","Wednesday","Good",13.62,13.997,28,27.9993,82
"Feb","15","No","Wednesday","Good",13.62,13.997,28,27.9993,117
"Feb","16","No","Wednesday","Good",13.62,13.997,31,26.0027,122
"Feb","17","No","Wednesday","Good",13.62,13.997,28,19.0012,255
"Feb","19","No","Wednesday","Good",7.98,5.0012,53,15.0013,161
"Feb","20","No","Wednesday","Good",9.86,9.9974,43,12.998,118
"Feb","21","No","Wednesday","Good",8.92,7.001,46,12.998,92
"Feb","22","No","Wednesday","Good",7.98,5.9978,53,12.998,73
"Feb","1","No","Thursday","Good",7.98,5.0012,53,15.0013,6
"Feb","2","No","Thursday","Fair",7.98,5.0012,53,15.0013,6
"Feb","3","No","Thursday","Good",7.98,5.9978,53,12.998,4
"Feb","5","No","Thursday","Good",7.04,5.9978,66,6.0032,12
"Feb","6","No","Thursday","Good",6.1,3.998,70,8.9981,47
"Feb","7","No","Thursday","Good",7.04,5.9978,57,7.0015,126
"Feb","9","No","Thursday","Good",8.92,7.001,57,12.998,179
"Feb","10","No","Thursday","Good",9.86,9.9974,54,12.998,88
"Feb","12","No","Thursday","Good",14.56,15.0002,41,15.0013,101
"Feb","13","No","Thursday","Good",17.38,18.0032,34,15.0013,123
"Feb","14","No","Thursday","Good",20.2,24.9992,31,15.0013,81
"Feb","15","No","Thursday","Good",20.2,24.0026,28,16.9979,106
"Feb","16","No","Thursday","Fair",18.32,18.9998,35,19.9995,146
"Feb","17","No","Thursday","Fair",19.26,20.003,32,19.9995,274
"Feb","18","No","Thursday","Fair",17.38,18.0032,42,19.0012,222
"Feb","19","No","Thursday","Good",14.56,15.0002,55,22.0028,175
"Feb","20","No","Thursday","Good",14.56,15.0002,59,22.0028,139
"Feb","21","No","Thursday","Good",16.44,17,55,26.0027,124
"Feb","22","No","Thursday","Good",15.5,15.9968,59,19.0012,76
"Feb","23","No","Thursday","Good",13.62,13.997,67,19.9995,44
"Feb","0","No","Friday","Good",12.68,13.0004,72,19.0012,32
"Feb","1","No","Friday","Good",12.68,13.0004,72,15.0013,8
"Feb","2","No","Friday","Good",12.68,13.0004,72,19.0012,7
"Feb","3","No","Friday","Good",13.62,13.997,67,16.9979,8
"Feb","4","No","Friday","Good",13.62,13.997,67,16.9979,1
"Feb","5","No","Friday","Fair",13.62,13.997,67,7.0015,7
"Feb","6","No","Friday","Fair",12.68,13.0004,72,11.0014,50
"Feb","7","No","Friday","Fair",11.74,11.9972,77,15.0013,116
"Feb","8","No","Friday","Fair",11.74,11.9972,77,12.998,272
"Feb","9","No","Friday","Fair",11.74,11.9972,77,12.998,169
"Feb","10","No","Friday","Fair",12.68,13.0004,72,15.0013,95
"Feb","11","No","Friday","Good",12.68,13.0004,72,11.0014,113
"Feb","12","No","Friday","Good",15.5,15.9968,59,12.998,185
"Feb","13","No","Friday","Good",20.2,24.9992,43,12.998,176
"Feb","14","No","Friday","Good",23.02,24.9992,36,19.9995,191
"Feb","15","No","Friday","Good",23.02,24.9992,36,22.0028,172
"Feb","16","No","Friday","Good",23.02,24.9992,36,19.0012,232
"Feb","17","No","Friday","Good",23.02,24.9992,34,23.9994,327
"Feb","18","No","Friday","Good",22.08,24.9992,33,22.0028,224
"Feb","20","No","Friday","Good",20.2,24.9992,31,12.998,124
"Feb","22","No","Friday","Good",17.38,18.0032,10,16.9979,107
"Feb","23","No","Friday","Good",16.44,17,8,19.0012,77
"Feb","0","No","Saturday","Good",14.56,15.0002,12,32.9975,29
"Feb","1","No","Saturday","Good",13.62,13.997,14,27.9993,31
"Feb","4","No","Saturday","Good",10.8,11.0006,15,22.0028,3
"Feb","6","No","Saturday","Good",10.8,11.0006,17,27.9993,6
"Feb","7","No","Saturday","Good",9.86,9.9974,17,35.0008,22
"Feb","8","No","Saturday","Good",9.86,9.9974,17,39.0007,45
"Feb","9","No","Saturday","Good",10.8,11.0006,16,43.9989,55
"Feb","10","No","Saturday","Good",11.74,11.9972,16,39.0007,106
"Feb","11","No","Saturday","Good",12.68,13.0004,16,39.0007,123
"Feb","12","No","Saturday","Good",12.68,13.0004,18,32.9975,119
"Feb","13","No","Saturday","Good",12.68,13.0004,16,40.9973,155
"Feb","14","No","Saturday","Good",13.62,13.997,15,43.9989,196
"Feb","16","No","Saturday","Good",12.68,13.0004,16,43.0006,120
"Feb","17","No","Saturday","Good",11.74,11.9972,19,40.9973,127
"Feb","18","No","Saturday","Good",8.92,5.0012,25,30.0026,88
"Feb","19","No","Saturday","Good",7.98,3.998,29,23.9994,59
"Feb","20","No","Saturday","Good",7.04,3.0014,28,35.0008,47
"Feb","22","No","Saturday","Good",6.1,1.0016,28,32.9975,44
"Feb","23","No","Saturday","Good",5.16,-0.00159999999999982,33,30.0026,29
"Feb","0","No","Sunday","Good",4.22,-2.0014,35,30.0026,17
"Feb","3","No","Sunday","Good",2.34,-4.0012,44,36.9974,18
"Feb","6","No","Sunday","Good",1.4,-4.0012,47,19.9995,2
"Feb","7","No","Sunday","Good",0.459999999999999,-4.9978,51,16.9979,2
"Feb","8","No","Sunday","Good",1.4,-0.998200000000001,51,7.0015,24
"Feb","9","No","Sunday","Good",2.34,-2.0014,47,19.0012,55
"Feb","12","No","Sunday","Good",6.1,5.0012,33,7.0015,182
"Feb","13","No","Sunday","Good",7.98,5.9978,29,0,198
"Feb","14","No","Sunday","Good",8.92,7.001,27,11.0014,212
"Feb","15","No","Sunday","Good",8.92,7.9976,27,6.0032,168
"Feb","16","No","Sunday","Good",8.92,7.9976,29,6.0032,147
"Feb","17","No","Sunday","Good",7.98,7.001,33,11.0014,146
"Feb","19","No","Sunday","Fair",7.98,5.9978,36,8.9981,42
"Feb","20","No","Sunday","Fair",7.98,7.9976,42,0,42
"Feb","21","No","Sunday","Fair",7.04,7.001,53,0,56
"Feb","22","No","Sunday","Fair",7.04,3.998,57,15.0013,47
"Feb","23","No","Sunday","Fair",6.1,3.998,61,11.0014,54
"Feb","2","Yes","Monday","Fair",7.98,3.998,42,22.0028,4
"Feb","4","Yes","Monday","Good",7.04,5.0012,45,11.0014,1
"Feb","5","Yes","Monday","Fair",7.98,7.9976,36,0,3
"Feb","6","Yes","Monday","Fair",11.74,11.9972,26,19.9995,8
"Feb","7","Yes","Monday","Fair",11.74,11.9972,26,19.0012,19
"Feb","9","Yes","Monday","Fair",7.04,3.998,57,19.0012,57
"Feb","11","Yes","Monday","Fair",7.04,5.9978,57,7.0015,90
"Feb","12","Yes","Monday","Fair",7.04,5.0012,66,12.998,93
"Feb","13","Yes","Monday","Bad",6.1,1.9982,81,22.0028,103
"Feb","14","Yes","Monday","Fair",7.04,3.998,76,16.9979,116
"Feb","15","Yes","Monday","Fair",6.1,1.9982,70,30.0026,87
"Feb","16","Yes","Monday","Bad",5.16,-0.00159999999999982,75,27.9993,56
"Feb","17","Yes","Monday","Fair",5.16,1.0016,75,26.0027,80
"Feb","18","Yes","Monday","Fair",3.28,-2.0014,87,23.9994,66
"Feb","20","Yes","Monday","Bad",3.28,-2.0014,81,26.0027,29
"Feb","22","Yes","Monday","Bad",1.4,-4.9978,75,27.9993,11
"Feb","6","No","Tuesday","Fair",-2.36,-8.0008,80,19.0012,7
"Feb","7","No","Tuesday","Fair",-2.36,-8.0008,80,19.0012,40
"Feb","10","No","Tuesday","Good",-0.48,-4.0012,69,0,44
"Feb","12","No","Tuesday","Good",1.4,-0.998200000000001,59,7.0015,55
"Feb","13","No","Tuesday","Good",2.34,-0.998200000000001,55,11.0014,55
"Feb","14","No","Tuesday","Good",2.34,-0.998200000000001,55,12.998,58
"Feb","17","No","Tuesday","Good",2.34,-2.0014,51,15.0013,196
"Feb","19","No","Tuesday","Good",1.4,-4.0012,47,19.0012,118
"Feb","20","No","Tuesday","Good",1.4,-2.998,47,15.0013,105
"Feb","21","No","Tuesday","Good",1.4,-2.998,47,16.9979,82
"Feb","22","No","Tuesday","Good",-0.48,-6.001,43,16.9979,77
"Feb","23","No","Tuesday","Good",-0.48,-6.001,43,16.9979,21
"Feb","1","No","Wednesday","Good",-1.42,-6.001,46,11.0014,4
"Feb","2","No","Wednesday","Good",-2.36,-6.001,50,8.9981,1
"Feb","3","No","Wednesday","Good",-2.36,-6.9976,50,11.0014,2
"Feb","5","No","Wednesday","Good",-2.36,-6.001,50,7.0015,8
"Feb","6","No","Wednesday","Good",-2.36,-6.001,50,7.0015,36
"Feb","8","No","Wednesday","Good",-1.42,-6.001,54,11.0014,235
"Feb","9","No","Wednesday","Good",0.459999999999999,-2.0014,51,6.0032,139
"Feb","10","No","Wednesday","Good",1.4,1.0016,40,0,51
"Feb","12","No","Wednesday","Good",4.22,3.0014,35,6.0032,67
"Feb","13","No","Wednesday","Good",6.1,5.0012,28,6.0032,87
"Feb","14","No","Wednesday","Good",7.04,5.9978,29,7.0015,78
"Feb","15","No","Wednesday","Good",7.98,7.001,25,6.0032,72
"Feb","16","No","Wednesday","Good",7.98,7.9976,25,0,94
"Feb","17","No","Wednesday","Good",7.98,7.001,25,6.0032,222
"Feb","18","No","Wednesday","Good",7.04,5.9978,26,6.0032,209
"Feb","19","No","Wednesday","Good",6.1,5.9978,33,0,141
"Feb","20","No","Wednesday","Good",3.28,-0.00159999999999982,60,11.0014,109
"Feb","22","No","Wednesday","Good",3.28,3.0014,48,0,61
"Feb","23","No","Wednesday","Good",2.34,1.0016,55,6.0032,39
"Feb","0","No","Thursday","Good",2.34,1.0016,55,6.0032,11
"Feb","1","No","Thursday","Good",2.34,1.0016,60,6.0032,7
"Feb","2","No","Thursday","Good",1.4,-0.998200000000001,64,6.0032,4
"Feb","3","No","Thursday","Good",1.4,-2.0014,64,8.9981,2
"Feb","5","No","Thursday","Good",1.4,-2.0014,69,8.9981,4
"Feb","6","No","Thursday","Good",1.4,-2.998,69,12.998,58
"Feb","8","No","Thursday","Good",3.28,-0.998200000000001,70,15.0013,252
"Feb","9","No","Thursday","Fair",3.28,-2.0014,75,19.9995,137
"Feb","10","No","Thursday","Fair",4.22,-0.00159999999999982,70,19.0012,57
"Feb","11","No","Thursday","Fair",7.04,3.0014,57,26.0027,79
"Feb","12","No","Thursday","Fair",8.92,5.9978,53,23.9994,95
"Feb","13","No","Thursday","Fair",9.86,9.9974,54,19.9995,88
"Feb","14","No","Thursday","Fair",10.8,11.0006,50,19.9995,69
"Feb","16","No","Thursday","Bad",9.86,9.9974,62,19.0012,71
"Feb","17","No","Thursday","Bad",8.92,7.001,66,12.998,177
"Feb","18","No","Thursday","Fair",7.98,3.998,87,22.0028,137
"Feb","19","No","Thursday","Bad",7.98,3.998,93,19.9995,115
"Feb","20","No","Thursday","Fair",7.98,3.998,93,23.9994,89
"Feb","21","No","Thursday","Fair",7.98,3.998,87,22.0028,83