-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpearson_test_log.txt
6109 lines (6109 loc) · 114 KB
/
pearson_test_log.txt
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
data1:squeez
data1:pearson
data1:squeez
data1:smoothing
data1:detach
data1:smoothing csv write
data1:smoothing csv write 2
data1:pearson
data2:squeez
data2:smoothing
data2:detach
data2:smoothing csv write
data2:smoothing csv write 2
data2:pearson
data3:squeez
data3:smoothing
data3:detach
data3:smoothing csv write
data3:smoothing csv write 2
data3:pearson
data4:squeez
data4:smoothing
data4:detach
data4:smoothing csv write
data4:smoothing csv write 2
data4:pearson
data5:squeez
data5:smoothing
data5:detach
data5:smoothing csv write
data5:smoothing csv write 2
data5:pearson
data6:squeez
data6:smoothing
data6:detach
data6:smoothing csv write
data6:smoothing csv write 2
data6:pearson
data7:squeez
data7:smoothing
data7:detach
data7:smoothing csv write
data7:smoothing csv write 2
data7:pearson
data8:squeez
data8:smoothing
data8:detach
data8:smoothing csv write
data8:smoothing csv write 2
data8:pearson
data9:squeez
data9:smoothing
data9:detach
data9:smoothing csv write
data9:smoothing csv write 2
data9:pearson
data10:squeez
data10:smoothing
data10:detach
data10:smoothing csv write
data10:smoothing csv write 2
data10:pearson
data11:squeez
data11:smoothing
data11:detach
data11:smoothing csv write
data11:smoothing csv write 2
data11:pearson
data12:squeez
data12:smoothing
data12:detach
data12:smoothing csv write
data12:smoothing csv write 2
data12:pearson
data13:squeez
data13:smoothing
data13:detach
data13:smoothing csv write
data13:smoothing csv write 2
data13:pearson
data14:squeez
data14:smoothing
data14:detach
data14:smoothing csv write
data14:smoothing csv write 2
data14:pearson
data15:squeez
data15:smoothing
data15:detach
data15:smoothing csv write
data15:smoothing csv write 2
data15:pearson
data16:squeez
data16:smoothing
data16:detach
data16:smoothing csv write
data16:smoothing csv write 2
data16:pearson
data17:squeez
data17:smoothing
data17:detach
data17:smoothing csv write
data17:smoothing csv write 2
data17:pearson
data18:squeez
data18:smoothing
data18:detach
data18:smoothing csv write
data18:smoothing csv write 2
data18:pearson
data19:squeez
data19:smoothing
data19:detach
data19:smoothing csv write
data19:smoothing csv write 2
data19:pearson
data20:squeez
data20:smoothing
data20:detach
data20:smoothing csv write
data20:smoothing csv write 2
data20:pearson
data21:squeez
data21:smoothing
data21:detach
data21:smoothing csv write
data21:smoothing csv write 2
data21:pearson
data22:squeez
data22:smoothing
data22:detach
data22:smoothing csv write
data22:smoothing csv write 2
data22:pearson
data23:squeez
data23:smoothing
data23:detach
data23:smoothing csv write
data23:smoothing csv write 2
data23:pearson
data24:squeez
data24:smoothing
data24:detach
data24:smoothing csv write
data24:smoothing csv write 2
data24:pearson
data25:squeez
data25:smoothing
data25:detach
data25:smoothing csv write
data25:smoothing csv write 2
data25:pearson
data26:squeez
data26:smoothing
data26:detach
data26:smoothing csv write
data26:smoothing csv write 2
data26:pearson
data27:squeez
data27:smoothing
data27:detach
data27:smoothing csv write
data27:smoothing csv write 2
data27:pearson
data28:squeez
data28:smoothing
data28:detach
data28:smoothing csv write
data28:smoothing csv write 2
data28:pearson
data29:squeez
data29:smoothing
data29:detach
data29:smoothing csv write
data29:smoothing csv write 2
data29:pearson
data30:squeez
data30:smoothing
data30:detach
data30:smoothing csv write
data30:smoothing csv write 2
data30:pearson
data31:squeez
data31:smoothing
data31:detach
data31:smoothing csv write
data31:smoothing csv write 2
data31:pearson
data32:squeez
data32:smoothing
data32:detach
data32:smoothing csv write
data32:smoothing csv write 2
data32:pearson
data33:squeez
data33:smoothing
data33:detach
data33:smoothing csv write
data33:smoothing csv write 2
data33:pearson
data34:squeez
data34:smoothing
data34:detach
data34:smoothing csv write
data34:smoothing csv write 2
data34:pearson
data35:squeez
data35:smoothing
data35:detach
data35:smoothing csv write
data35:smoothing csv write 2
data35:pearson
data36:squeez
data36:smoothing
data36:detach
data36:smoothing csv write
data36:smoothing csv write 2
data36:pearson
data37:squeez
data37:smoothing
data37:detach
data37:smoothing csv write
data37:smoothing csv write 2
data37:pearson
data38:squeez
data38:smoothing
data38:detach
data38:smoothing csv write
data38:smoothing csv write 2
data38:pearson
data39:squeez
data39:smoothing
data39:detach
data39:smoothing csv write
data39:smoothing csv write 2
data39:pearson
data40:squeez
data40:smoothing
data40:detach
data40:smoothing csv write
data40:smoothing csv write 2
data40:pearson
data41:squeez
data41:smoothing
data41:detach
data41:smoothing csv write
data41:smoothing csv write 2
data41:pearson
data42:squeez
data42:smoothing
data42:detach
data42:smoothing csv write
data42:smoothing csv write 2
data42:pearson
data43:squeez
data43:smoothing
data43:detach
data43:smoothing csv write
data43:smoothing csv write 2
data43:pearson
data44:squeez
data44:smoothing
data44:detach
data44:smoothing csv write
data44:smoothing csv write 2
data44:pearson
data45:squeez
data45:smoothing
data45:detach
data45:smoothing csv write
data45:smoothing csv write 2
data45:pearson
data46:squeez
data46:smoothing
data46:detach
data46:smoothing csv write
data46:smoothing csv write 2
data46:pearson
data47:squeez
data47:smoothing
data47:detach
data47:smoothing csv write
data47:smoothing csv write 2
data47:pearson
data48:squeez
data48:smoothing
data48:detach
data48:smoothing csv write
data48:smoothing csv write 2
data48:pearson
data49:squeez
data49:smoothing
data49:detach
data49:smoothing csv write
data49:smoothing csv write 2
data49:pearson
data50:squeez
data50:smoothing
data50:detach
data50:smoothing csv write
data50:smoothing csv write 2
data50:pearson
data51:squeez
data51:smoothing
data51:detach
data51:smoothing csv write
data51:smoothing csv write 2
data51:pearson
data52:squeez
data52:smoothing
data52:detach
data52:smoothing csv write
data52:smoothing csv write 2
data52:pearson
data53:squeez
data53:smoothing
data53:detach
data53:smoothing csv write
data53:smoothing csv write 2
data53:pearson
data54:squeez
data54:smoothing
data54:detach
data54:smoothing csv write
data54:smoothing csv write 2
data54:pearson
data55:squeez
data55:smoothing
data55:detach
data55:smoothing csv write
data55:smoothing csv write 2
data55:pearson
data56:squeez
data56:smoothing
data56:detach
data56:smoothing csv write
data56:smoothing csv write 2
data56:pearson
data57:squeez
data57:smoothing
data57:detach
data57:smoothing csv write
data57:smoothing csv write 2
data57:pearson
data58:squeez
data58:smoothing
data58:detach
data58:smoothing csv write
data58:smoothing csv write 2
data58:pearson
data59:squeez
data59:smoothing
data59:detach
data59:smoothing csv write
data59:smoothing csv write 2
data59:pearson
data60:squeez
data60:smoothing
data60:detach
data60:smoothing csv write
data60:smoothing csv write 2
data60:pearson
data61:squeez
data61:smoothing
data61:detach
data61:smoothing csv write
data61:smoothing csv write 2
data61:pearson
data62:squeez
data62:smoothing
data62:detach
data62:smoothing csv write
data62:smoothing csv write 2
data62:pearson
data63:squeez
data63:smoothing
data63:detach
data63:smoothing csv write
data63:smoothing csv write 2
data63:pearson
data64:squeez
data64:smoothing
data64:detach
data64:smoothing csv write
data64:smoothing csv write 2
data64:pearson
data64:pearson csv write
data65:squeez
data65:smoothing
data65:detach
data65:smoothing csv write
data65:smoothing csv write 2
data65:pearson
data66:squeez
data66:smoothing
data66:detach
data66:smoothing csv write
data66:smoothing csv write 2
data66:pearson
data67:squeez
data67:smoothing
data67:detach
data67:smoothing csv write
data67:smoothing csv write 2
data67:pearson
data68:squeez
data68:smoothing
data68:detach
data68:smoothing csv write
data68:smoothing csv write 2
data68:pearson
data69:squeez
data69:smoothing
data69:detach
data69:smoothing csv write
data69:smoothing csv write 2
data69:pearson
data70:squeez
data70:smoothing
data70:detach
data70:smoothing csv write
data70:smoothing csv write 2
data70:pearson
data71:squeez
data71:smoothing
data71:detach
data71:smoothing csv write
data71:smoothing csv write 2
data71:pearson
data72:squeez
data72:smoothing
data72:detach
data72:smoothing csv write
data72:smoothing csv write 2
data72:pearson
data73:squeez
data73:smoothing
data73:detach
data73:smoothing csv write
data73:smoothing csv write 2
data73:pearson
data74:squeez
data74:smoothing
data74:detach
data74:smoothing csv write
data74:smoothing csv write 2
data74:pearson
data75:squeez
data75:smoothing
data75:detach
data75:smoothing csv write
data75:smoothing csv write 2
data75:pearson
data76:squeez
data76:smoothing
data76:detach
data76:smoothing csv write
data76:smoothing csv write 2
data76:pearson
data77:squeez
data77:smoothing
data77:detach
data77:smoothing csv write
data77:smoothing csv write 2
data77:pearson
data78:squeez
data78:smoothing
data78:detach
data78:smoothing csv write
data78:smoothing csv write 2
data78:pearson
data79:squeez
data79:smoothing
data79:detach
data79:smoothing csv write
data79:smoothing csv write 2
data79:pearson
data80:squeez
data80:smoothing
data80:detach
data80:smoothing csv write
data80:smoothing csv write 2
data80:pearson
data81:squeez
data81:smoothing
data81:detach
data81:smoothing csv write
data81:smoothing csv write 2
data81:pearson
data82:squeez
data82:smoothing
data82:detach
data82:smoothing csv write
data82:smoothing csv write 2
data82:pearson
data83:squeez
data83:smoothing
data83:detach
data83:smoothing csv write
data83:smoothing csv write 2
data83:pearson
data84:squeez
data84:smoothing
data84:detach
data84:smoothing csv write
data84:smoothing csv write 2
data84:pearson
data85:squeez
data85:smoothing
data85:detach
data85:smoothing csv write
data85:smoothing csv write 2
data85:pearson
data86:squeez
data86:smoothing
data86:detach
data86:smoothing csv write
data86:smoothing csv write 2
data86:pearson
data87:squeez
data87:smoothing
data87:detach
data87:smoothing csv write
data87:smoothing csv write 2
data87:pearson
data88:squeez
data88:smoothing
data88:detach
data88:smoothing csv write
data88:smoothing csv write 2
data88:pearson
data89:squeez
data89:smoothing
data89:detach
data89:smoothing csv write
data89:smoothing csv write 2
data89:pearson
data90:squeez
data90:smoothing
data90:detach
data90:smoothing csv write
data90:smoothing csv write 2
data90:pearson
data91:squeez
data91:smoothing
data91:detach
data91:smoothing csv write
data91:smoothing csv write 2
data91:pearson
data92:squeez
data92:smoothing
data92:detach
data92:smoothing csv write
data92:smoothing csv write 2
data92:pearson
data93:squeez
data93:smoothing
data93:detach
data93:smoothing csv write
data93:smoothing csv write 2
data93:pearson
data94:squeez
data94:smoothing
data94:detach
data94:smoothing csv write
data94:smoothing csv write 2
data94:pearson
data95:squeez
data95:smoothing
data95:detach
data95:smoothing csv write
data95:smoothing csv write 2
data95:pearson
data96:squeez
data96:smoothing
data96:detach
data96:smoothing csv write
data96:smoothing csv write 2
data96:pearson
data97:squeez
data97:smoothing
data97:detach
data97:smoothing csv write
data97:smoothing csv write 2
data97:pearson
data98:squeez
data98:smoothing
data98:detach
data98:smoothing csv write
data98:smoothing csv write 2
data98:pearson
data99:squeez
data99:smoothing
data99:detach
data99:smoothing csv write
data99:smoothing csv write 2
data99:pearson
data100:squeez
data100:smoothing
data100:detach
data100:smoothing csv write
data100:smoothing csv write 2
data100:pearson
data101:squeez
data101:smoothing
data101:detach
data101:smoothing csv write
data101:smoothing csv write 2
data101:pearson
data102:squeez
data102:smoothing
data102:detach
data102:smoothing csv write
data102:smoothing csv write 2
data102:pearson
data103:squeez
data103:smoothing
data103:detach
data103:smoothing csv write
data103:smoothing csv write 2
data103:pearson
data104:squeez
data104:smoothing
data104:detach
data104:smoothing csv write
data104:smoothing csv write 2
data104:pearson
data105:squeez
data105:smoothing
data105:detach
data105:smoothing csv write
data105:smoothing csv write 2
data105:pearson
data106:squeez
data106:smoothing
data106:detach
data106:smoothing csv write
data106:smoothing csv write 2
data106:pearson
data107:squeez
data107:smoothing
data107:detach
data107:smoothing csv write
data107:smoothing csv write 2
data107:pearson
data108:squeez
data108:smoothing
data108:detach
data108:smoothing csv write
data108:smoothing csv write 2
data108:pearson
data109:squeez
data109:smoothing
data109:detach
data109:smoothing csv write
data109:smoothing csv write 2
data109:pearson
data110:squeez
data110:smoothing
data110:detach
data110:smoothing csv write
data110:smoothing csv write 2
data110:pearson
data111:squeez
data111:smoothing
data111:detach
data111:smoothing csv write
data111:smoothing csv write 2
data111:pearson
data112:squeez
data112:smoothing
data112:detach
data112:smoothing csv write
data112:smoothing csv write 2
data112:pearson
data113:squeez
data113:smoothing
data113:detach
data113:smoothing csv write
data113:smoothing csv write 2
data113:pearson
data114:squeez
data114:smoothing
data114:detach
data114:smoothing csv write
data114:smoothing csv write 2
data114:pearson
data115:squeez
data115:smoothing
data115:detach
data115:smoothing csv write
data115:smoothing csv write 2
data115:pearson
data116:squeez
data116:smoothing
data116:detach
data116:smoothing csv write
data116:smoothing csv write 2
data116:pearson
data117:squeez
data117:smoothing
data117:detach
data117:smoothing csv write
data117:smoothing csv write 2
data117:pearson
data118:squeez
data118:smoothing
data118:detach
data118:smoothing csv write
data118:smoothing csv write 2
data118:pearson
data119:squeez
data119:smoothing
data119:detach
data119:smoothing csv write
data119:smoothing csv write 2
data119:pearson
data120:squeez
data120:smoothing
data120:detach
data120:smoothing csv write
data120:smoothing csv write 2
data120:pearson
data121:squeez
data121:smoothing
data121:detach
data121:smoothing csv write
data121:smoothing csv write 2
data121:pearson
data122:squeez
data122:smoothing
data122:detach
data122:smoothing csv write
data122:smoothing csv write 2
data122:pearson
data123:squeez
data123:smoothing
data123:detach
data123:smoothing csv write
data123:smoothing csv write 2
data123:pearson
data124:squeez
data124:smoothing
data124:detach
data124:smoothing csv write
data124:smoothing csv write 2
data124:pearson
data125:squeez
data125:smoothing
data125:detach
data125:smoothing csv write
data125:smoothing csv write 2
data125:pearson
data126:squeez
data126:smoothing
data126:detach
data126:smoothing csv write
data126:smoothing csv write 2
data126:pearson
data127:squeez
data127:smoothing
data127:detach
data127:smoothing csv write
data127:smoothing csv write 2
data127:pearson
data128:squeez
data128:smoothing
data128:detach
data128:smoothing csv write
data128:smoothing csv write 2
data128:pearson
data128:pearson csv write
data129:squeez
data129:smoothing
data129:detach
data129:smoothing csv write
data129:smoothing csv write 2
data129:pearson
data130:squeez
data130:smoothing
data130:detach
data130:smoothing csv write
data130:smoothing csv write 2
data130:pearson
data131:squeez
data131:smoothing
data131:detach
data131:smoothing csv write
data131:smoothing csv write 2
data131:pearson
data132:squeez
data132:smoothing
data132:detach
data132:smoothing csv write
data132:smoothing csv write 2
data132:pearson
data133:squeez
data133:smoothing
data133:detach
data133:smoothing csv write
data133:smoothing csv write 2
data133:pearson
data134:squeez
data134:smoothing
data134:detach
data134:smoothing csv write
data134:smoothing csv write 2
data134:pearson
data135:squeez
data135:smoothing
data135:detach
data135:smoothing csv write
data135:smoothing csv write 2
data135:pearson
data136:squeez
data136:smoothing
data136:detach
data136:smoothing csv write
data136:smoothing csv write 2
data136:pearson
data137:squeez
data137:smoothing
data137:detach
data137:smoothing csv write
data137:smoothing csv write 2
data137:pearson
data138:squeez
data138:smoothing
data138:detach
data138:smoothing csv write
data138:smoothing csv write 2
data138:pearson
data139:squeez
data139:smoothing
data139:detach
data139:smoothing csv write
data139:smoothing csv write 2
data139:pearson
data140:squeez
data140:smoothing
data140:detach
data140:smoothing csv write
data140:smoothing csv write 2
data140:pearson
data141:squeez
data141:smoothing
data141:detach
data141:smoothing csv write
data141:smoothing csv write 2
data141:pearson
data142:squeez
data142:smoothing
data142:detach
data142:smoothing csv write
data142:smoothing csv write 2
data142:pearson
data143:squeez
data143:smoothing
data143:detach
data143:smoothing csv write
data143:smoothing csv write 2
data143:pearson
data144:squeez
data144:smoothing
data144:detach
data144:smoothing csv write
data144:smoothing csv write 2
data144:pearson
data145:squeez
data145:smoothing
data145:detach
data145:smoothing csv write
data145:smoothing csv write 2
data145:pearson
data146:squeez
data146:smoothing
data146:detach
data146:smoothing csv write
data146:smoothing csv write 2
data146:pearson
data147:squeez
data147:smoothing
data147:detach
data147:smoothing csv write
data147:smoothing csv write 2
data147:pearson
data148:squeez
data148:smoothing
data148:detach
data148:smoothing csv write
data148:smoothing csv write 2
data148:pearson
data149:squeez
data149:smoothing
data149:detach
data149:smoothing csv write
data149:smoothing csv write 2
data149:pearson
data150:squeez
data150:smoothing
data150:detach
data150:smoothing csv write
data150:smoothing csv write 2
data150:pearson
data151:squeez
data151:smoothing
data151:detach
data151:smoothing csv write
data151:smoothing csv write 2
data151:pearson
data152:squeez
data152:smoothing
data152:detach
data152:smoothing csv write
data152:smoothing csv write 2
data152:pearson
data153:squeez
data153:smoothing
data153:detach
data153:smoothing csv write
data153:smoothing csv write 2
data153:pearson
data154:squeez
data154:smoothing
data154:detach
data154:smoothing csv write
data154:smoothing csv write 2
data154:pearson
data155:squeez
data155:smoothing
data155:detach
data155:smoothing csv write
data155:smoothing csv write 2
data155:pearson
data156:squeez
data156:smoothing
data156:detach
data156:smoothing csv write
data156:smoothing csv write 2
data156:pearson
data157:squeez
data157:smoothing
data157:detach
data157:smoothing csv write
data157:smoothing csv write 2
data157:pearson
data158:squeez
data158:smoothing
data158:detach
data158:smoothing csv write
data158:smoothing csv write 2
data158:pearson
data159:squeez
data159:smoothing
data159:detach
data159:smoothing csv write
data159:smoothing csv write 2
data159:pearson
data160:squeez
data160:smoothing
data160:detach
data160:smoothing csv write
data160:smoothing csv write 2
data160:pearson
data161:squeez
data161:smoothing
data161:detach
data161:smoothing csv write
data161:smoothing csv write 2
data161:pearson
data162:squeez
data162:smoothing
data162:detach
data162:smoothing csv write
data162:smoothing csv write 2
data162:pearson
data163:squeez
data163:smoothing
data163:detach
data163:smoothing csv write
data163:smoothing csv write 2
data163:pearson
data164:squeez
data164:smoothing
data164:detach
data164:smoothing csv write
data164:smoothing csv write 2
data164:pearson
data165:squeez
data165:smoothing
data165:detach
data165:smoothing csv write
data165:smoothing csv write 2
data165:pearson
data166:squeez
data166:smoothing
data166:detach
data166:smoothing csv write
data166:smoothing csv write 2
data166:pearson