-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhctsa_features.csv
We can't make this file beautiful and searchable because it's too large.
7703 lines (7703 loc) · 725 KB
/
hctsa_features.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
ID,Name,Keywords,CodeString,MasterID
1,length,"misc,raw,lengthdep",ST_length,1
2,mean,"distribution,location,raw,locdep",DN_mean,5
3,harmonic_mean,"distribution,location,raw,locdep",DN_hmean,6
4,median,"distribution,location,raw,locdep",DN_median,8
5,trimmed_mean_1,"distribution,location,raw,locdep",DN_TrimmedMean_1,13
6,trimmed_mean_5,"distribution,location,raw,locdep",DN_TrimmedMean_5,14
7,trimmed_mean_10,"distribution,location,raw,locdep",DN_TrimmedMean_10,15
8,trimmed_mean_25,"distribution,location,raw,locdep",DN_TrimmedMean_25,16
9,trimmed_mean_50,"distribution,location,raw,locdep",DN_TrimmedMean_50,17
10,midhinge,"distribution,location,raw,locdep",DN_midhinge,9
11,DN_HistogramMode_5,"distribution,location",DN_HistogramMode_5,10
12,DN_HistogramMode_10,"distribution,location",DN_HistogramMode_10,11
13,DN_HistogramMode_20,"distribution,location",DN_HistogramMode_20,12
14,maximum,"distribution",DN_max,3
15,miminmum,"distribution",DN_min,4
16,rms,"distribution,location,raw,locdep,spreaddep",DN_rms,7
17,burstiness_Goh,"distribution,raw,locdep,spreaddep",DN_burstiness.B,2
18,burstiness_Kim,"distribution,raw,locdep,spreaddep",DN_burstiness.B_Kim,2
19,standard_deviation,"distribution,spread,raw,spreaddep",DN_Spread_std,18
20,mean_absolute_deviation,"distribution,spread,raw,spreaddep",DN_Spread_mad,19
21,interquartile_range,"distribution,spread,raw,spreaddep",DN_Spread_iqr,20
22,median_absolute_deviation,"distribution,spread,raw,spreaddep",DN_Spread_mead,21
23,DN_Moments_3,"distribution,moment,shape",DN_Moments_3,22
24,DN_Moments_4,"distribution,moment,shape",DN_Moments_4,23
25,DN_Moments_5,"distribution,moment,shape",DN_Moments_5,24
26,DN_Moments_6,"distribution,moment,shape",DN_Moments_6,25
27,DN_Moments_7,"distribution,moment,shape",DN_Moments_7,26
28,DN_Moments_8,"distribution,moment,shape",DN_Moments_8,27
29,DN_Moments_9,"distribution,moment,shape",DN_Moments_9,28
30,DN_Moments_10,"distribution,moment,shape",DN_Moments_10,29
31,DN_Moments_11,"distribution,moment,shape",DN_Moments_11,30
32,DN_Moments_raw_3,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_3,31
33,DN_Moments_raw_4,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_4,32
34,DN_Moments_raw_5,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_5,33
35,DN_Moments_raw_6,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_6,34
36,DN_Moments_raw_7,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_7,35
37,DN_Moments_raw_8,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_8,36
38,DN_Moments_raw_9,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_9,37
39,DN_Moments_raw_10,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_10,38
40,DN_Moments_raw_11,"distribution,moment,shape,raw,spreaddep",DN_Moments_raw_11,39
41,skewness_pearson,"distribution,moment,shape,raw,locdep",DN_CustomSkewness_pearson,40
42,skewness_bowley,"distribution,moment,shape",DN_CustomSkewness_bowley,41
43,coeff_var_1,"distribution,spread,cv,raw,locdep,spreaddep",DN_cv_1,83
44,coeff_var_2,"distribution,spread,cv,raw,locdep,spreaddep",DN_cv_2,84
45,DN_Withinp_05,"distribution,spread",DN_Withinp_05,42
46,DN_Withinp_10,"distribution,spread",DN_Withinp_10,43
47,DN_Withinp_15,"distribution,spread",DN_Withinp_15,44
48,DN_Withinp_20,"distribution,spread",DN_Withinp_20,45
49,DN_Withinp_25,"distribution,spread",DN_Withinp_25,46
50,DN_Withinp_30,"distribution,spread",DN_Withinp_30,47
51,DN_Withinp_median_05,"distribution,spread",DN_Withinp_median_05,48
52,DN_Withinp_median_10,"distribution,spread",DN_Withinp_median_10,49
53,DN_Withinp_median_15,"distribution,spread",DN_Withinp_median_15,50
54,DN_Withinp_median_20,"distribution,spread",DN_Withinp_median_20,51
55,DN_Withinp_median_25,"distribution,spread",DN_Withinp_median_25,52
56,DN_Withinp_median_30,"distribution,spread",DN_Withinp_median_30,53
57,DN_pleft005,"distribution,spread",DN_pleft_005,54
58,DN_pleft01,"distribution,spread",DN_pleft_01,55
59,DN_pleft02,"distribution,spread",DN_pleft_02,56
60,DN_pleft03,"distribution,spread",DN_pleft_03,57
61,DN_pleft04,"distribution,spread",DN_pleft_04,58
62,DN_pleft05,"distribution,spread",DN_pleft_05,59
63,quantile_1,"distribution",DN_Quantile_1,60
64,quantile_2,"distribution",DN_Quantile_2,61
65,quantile_3,"distribution",DN_Quantile_3,62
66,quantile_4,"distribution",DN_Quantile_4,63
67,quantile_5,"distribution",DN_Quantile_5,64
68,quantile_10,"distribution",DN_Quantile_10,65
69,quantile_20,"distribution",DN_Quantile_20,66
70,quantile_30,"distribution",DN_Quantile_30,67
71,quantile_40,"distribution",DN_Quantile_40,68
72,quantile_50,"distribution",DN_Quantile_50,69
73,quantile_60,"distribution",DN_Quantile_60,70
74,quantile_70,"distribution",DN_Quantile_70,71
75,quantile_80,"distribution",DN_Quantile_80,72
76,quantile_90,"distribution",DN_Quantile_90,73
77,quantile_91,"distribution",DN_Quantile_91,74
78,quantile_92,"distribution",DN_Quantile_92,75
79,quantile_93,"distribution",DN_Quantile_93,76
80,quantile_94,"distribution",DN_Quantile_94,77
81,quantile_95,"distribution",DN_Quantile_95,78
82,quantile_96,"distribution",DN_Quantile_96,79
83,quantile_97,"distribution",DN_Quantile_97,80
84,quantile_98,"distribution",DN_Quantile_98,81
85,quantile_99,"distribution",DN_Quantile_99,82
86,HighLowMu,"distribution,raw,locdep,spreaddep",DN_HighLowMu,85
87,propUnique,"distribution,raw",DN_Unique,86
88,ST_SimpleStats_zcross,"noisiness",ST_SimpleStats_zcross,87
89,ST_SimpleStats_pmcross,"distribution",ST_SimpleStats_pmcross,88
90,DN_ProportionValues_zeros,"distribution,raw",DN_ProportionValues_zeros,89
91,DN_ProportionValues_geq0,"distribution,raw,locdep",DN_ProportionValues_geq0,90
92,DN_ProportionValues_positive,"distribution,raw,locdep",DN_ProportionValues_positive,91
93,AC_1,"correlation",AC_1,92
94,AC_2,"correlation",AC_2,93
95,AC_3,"correlation",AC_3,94
96,AC_4,"correlation",AC_4,95
97,AC_5,"correlation",AC_5,96
98,AC_6,"correlation",AC_6,97
99,AC_7,"correlation",AC_7,98
100,AC_8,"correlation",AC_8,99
101,AC_9,"correlation",AC_9,100
102,AC_10,"correlation",AC_10,101
103,AC_11,"correlation",AC_11,102
104,AC_12,"correlation",AC_12,103
105,AC_13,"correlation",AC_13,104
106,AC_14,"correlation",AC_14,105
107,AC_15,"correlation",AC_15,106
108,AC_16,"correlation",AC_16,107
109,AC_17,"correlation",AC_17,108
110,AC_18,"correlation",AC_18,109
111,AC_19,"correlation",AC_19,110
112,AC_20,"correlation",AC_20,111
113,AC_21,"correlation",AC_21,112
114,AC_22,"correlation",AC_22,113
115,AC_23,"correlation",AC_23,114
116,AC_24,"correlation",AC_24,115
117,AC_25,"correlation",AC_25,116
118,AC_26,"correlation",AC_26,117
119,AC_27,"correlation",AC_27,118
120,AC_28,"correlation",AC_28,119
121,AC_29,"correlation",AC_29,120
122,AC_30,"correlation",AC_30,121
123,AC_31,"correlation",AC_31,122
124,AC_32,"correlation",AC_32,123
125,AC_33,"correlation",AC_33,124
126,AC_34,"correlation",AC_34,125
127,AC_35,"correlation",AC_35,126
128,AC_36,"correlation",AC_36,127
129,AC_37,"correlation",AC_37,128
130,AC_38,"correlation",AC_38,129
131,AC_39,"correlation",AC_39,130
132,AC_40,"correlation",AC_40,131
133,firstZero_acf_tau,"correlation,timescale",CO_FirstCrossing_acf_0.firstCrossing,132
134,firstZero_acf_point,"correlation,timescale",CO_FirstCrossing_acf_0.pointOfCrossing,132
135,first1e_acf_tau,"correlation,timescale",CO_FirstCrossing_acf_1e.firstCrossing,133
136,first1e_acf_point,"correlation,timescale",CO_FirstCrossing_acf_1e.pointOfCrossing,133
137,firstMin_acf,"correlation,timescale",CO_FirstMin_ac,134
138,AC_nl_12,"correlation,nonlinearautocorr",AC_nl_12,140
139,AC_nl_123,"correlation,nonlinearautocorr",AC_nl_123,141
140,AC_nl_1234,"correlation,nonlinearautocorr",AC_nl_1234,142
141,AC_nl_12345,"correlation,nonlinearautocorr",AC_nl_12345,143
142,AC_nl_123456,"correlation,nonlinearautocorr",AC_nl_123456,144
143,AC_nl_1234567,"correlation,nonlinearautocorr",AC_nl_1234567,145
144,AC_nl_12345678,"correlation,nonlinearautocorr",AC_nl_12345678,146
145,AC_nl_13,"correlation,nonlinearautocorr",AC_nl_13,147
146,AC_nl_24,"correlation,nonlinearautocorr",AC_nl_24,148
147,AC_nl_135,"correlation,nonlinearautocorr",AC_nl_135,149
148,AC_nl_246,"correlation,nonlinearautocorr",AC_nl_246,150
149,AC_nl_1357,"correlation,nonlinearautocorr",AC_nl_1357,151
150,AC_nl_2468,"correlation,nonlinearautocorr",AC_nl_2468,152
151,AC_nl_124,"correlation,nonlinearautocorr",AC_nl_124,153
152,AC_nl_134,"correlation,nonlinearautocorr",AC_nl_134,154
153,AC_nl_14,"correlation,nonlinearautocorr",AC_nl_14,155
154,AC_nl_11,"correlation,nonlinearautocorr",AC_nl_11,156
155,AC_nl_22,"correlation,nonlinearautocorr",AC_nl_22,157
156,AC_nl_33,"correlation,nonlinearautocorr",AC_nl_33,158
157,AC_nl_44,"correlation,nonlinearautocorr",AC_nl_44,159
158,AC_nl_55,"correlation,nonlinearautocorr",AC_nl_55,160
159,AC_nl_66,"correlation,nonlinearautocorr",AC_nl_66,161
160,AC_nl_011,"correlation,nonlinearautocorr",AC_nl_011,162
161,AC_nl_022,"correlation,nonlinearautocorr",AC_nl_022,163
162,AC_nl_033,"correlation,nonlinearautocorr",AC_nl_033,164
163,AC_nl_044,"correlation,nonlinearautocorr",AC_nl_044,165
164,AC_nl_055,"correlation,nonlinearautocorr",AC_nl_055,166
165,AC_nl_066,"correlation,nonlinearautocorr",AC_nl_066,167
166,AC_nl_001,"correlation,nonlinearautocorr",AC_nl_001,168
167,AC_nl_002,"correlation,nonlinearautocorr",AC_nl_002,169
168,AC_nl_003,"correlation,nonlinearautocorr",AC_nl_003,170
169,AC_nl_004,"correlation,nonlinearautocorr",AC_nl_004,171
170,AC_nl_005,"correlation,nonlinearautocorr",AC_nl_005,172
171,AC_nl_006,"correlation,nonlinearautocorr",AC_nl_006,173
172,AC_nl_012,"correlation,nonlinearautocorr",AC_nl_012,174
173,AC_nl_013,"correlation,nonlinearautocorr",AC_nl_013,175
174,AC_nl_023,"correlation,nonlinearautocorr",AC_nl_023,176
175,AC_nl_014,"correlation,nonlinearautocorr",AC_nl_014,177
176,AC_nl_024,"correlation,nonlinearautocorr",AC_nl_024,178
177,AC_nl_034,"correlation,nonlinearautocorr",AC_nl_034,179
178,AC_nl_015,"correlation,nonlinearautocorr",AC_nl_015,180
179,AC_nl_025,"correlation,nonlinearautocorr",AC_nl_025,181
180,AC_nl_035,"correlation,nonlinearautocorr",AC_nl_035,182
181,AC_nl_045,"correlation,nonlinearautocorr",AC_nl_045,183
182,AC_nl_016,"correlation,nonlinearautocorr",AC_nl_016,184
183,AC_nl_026,"correlation,nonlinearautocorr",AC_nl_026,185
184,AC_nl_036,"correlation,nonlinearautocorr",AC_nl_036,186
185,AC_nl_046,"correlation,nonlinearautocorr",AC_nl_046,187
186,AC_nl_056,"correlation,nonlinearautocorr",AC_nl_056,188
187,AC_nl_112,"correlation,nonlinearautocorr",AC_nl_112,189
188,AC_nl_113,"correlation,nonlinearautocorr",AC_nl_113,190
189,AC_nl_122,"correlation,nonlinearautocorr",AC_nl_122,191
190,AC_nl_133,"correlation,nonlinearautocorr",AC_nl_133,192
191,AC_nl_223,"correlation,nonlinearautocorr",AC_nl_223,193
192,AC_nl_233,"correlation,nonlinearautocorr",AC_nl_233,194
193,RM_ami_0,"information,correlation,AMI",CO_RM_AMInformation_0,195
194,RM_ami_1,"information,correlation,AMI",CO_RM_AMInformation_1,196
195,RM_ami_2,"information,correlation,AMI",CO_RM_AMInformation_2,197
196,RM_ami_3,"information,correlation,AMI",CO_RM_AMInformation_3,198
197,RM_ami_4,"information,correlation,AMI",CO_RM_AMInformation_4,199
198,RM_ami_5,"information,correlation,AMI",CO_RM_AMInformation_5,200
199,RM_ami_6,"information,correlation,AMI",CO_RM_AMInformation_6,201
200,RM_ami_7,"information,correlation,AMI",CO_RM_AMInformation_7,202
201,RM_ami_8,"information,correlation,AMI",CO_RM_AMInformation_8,203
202,RM_ami_9,"information,correlation,AMI",CO_RM_AMInformation_9,204
203,RM_ami_10,"information,correlation,AMI",CO_RM_AMInformation_10,205
204,firstMin_mi-gaussian,"correlation,AMI",CO_FirstMin_mi-gaussian,135
205,firstMin_mi-kraskov1_4,"correlation,AMI",CO_FirstMin_mi-kraskov1_4,136
206,firstMin_mi-kraskov2_4,"correlation,AMI",CO_FirstMin_mi-kraskov2_4,137
207,firstMin_mi-hist_5,"correlation,AMI",CO_FirstMin_mi-hist_5,138
208,firstMin_mi-hist_10,"correlation,AMI",CO_FirstMin_mi-hist_10,139
209,CO_HistogramAMI_std1_2_1,"information,correlation,AMI",CO_HistogramAMI_std1_2.ami1,206
210,CO_HistogramAMI_std1_2_2,"information,correlation,AMI",CO_HistogramAMI_std1_2.ami2,206
211,CO_HistogramAMI_std1_2_3,"information,correlation,AMI",CO_HistogramAMI_std1_2.ami3,206
212,CO_HistogramAMI_std1_2_4,"information,correlation,AMI",CO_HistogramAMI_std1_2.ami4,206
213,CO_HistogramAMI_std1_2_5,"information,correlation,AMI",CO_HistogramAMI_std1_2.ami5,206
214,CO_HistogramAMI_std1_5_1,"information,correlation,AMI",CO_HistogramAMI_std1_5.ami1,207
215,CO_HistogramAMI_std1_5_2,"information,correlation,AMI",CO_HistogramAMI_std1_5.ami2,207
216,CO_HistogramAMI_std1_5_3,"information,correlation,AMI",CO_HistogramAMI_std1_5.ami3,207
217,CO_HistogramAMI_std1_5_4,"information,correlation,AMI",CO_HistogramAMI_std1_5.ami4,207
218,CO_HistogramAMI_std1_5_5,"information,correlation,AMI",CO_HistogramAMI_std1_5.ami5,207
219,CO_HistogramAMI_std1_10_1,"information,correlation,AMI",CO_HistogramAMI_std1_10.ami1,208
220,CO_HistogramAMI_std1_10_2,"information,correlation,AMI",CO_HistogramAMI_std1_10.ami2,208
221,CO_HistogramAMI_std1_10_3,"information,correlation,AMI",CO_HistogramAMI_std1_10.ami3,208
222,CO_HistogramAMI_std1_10_4,"information,correlation,AMI",CO_HistogramAMI_std1_10.ami4,208
223,CO_HistogramAMI_std1_10_5,"information,correlation,AMI",CO_HistogramAMI_std1_10.ami5,208
224,CO_HistogramAMI_std2_2_1,"information,correlation,AMI",CO_HistogramAMI_std2_2.ami1,209
225,CO_HistogramAMI_std2_2_2,"information,correlation,AMI",CO_HistogramAMI_std2_2.ami2,209
226,CO_HistogramAMI_std2_2_3,"information,correlation,AMI",CO_HistogramAMI_std2_2.ami3,209
227,CO_HistogramAMI_std2_2_4,"information,correlation,AMI",CO_HistogramAMI_std2_2.ami4,209
228,CO_HistogramAMI_std2_2_5,"information,correlation,AMI",CO_HistogramAMI_std2_2.ami5,209
229,CO_HistogramAMI_std2_5_1,"information,correlation,AMI",CO_HistogramAMI_std2_5.ami1,210
230,CO_HistogramAMI_std2_5_2,"information,correlation,AMI",CO_HistogramAMI_std2_5.ami2,210
231,CO_HistogramAMI_std2_5_3,"information,correlation,AMI",CO_HistogramAMI_std2_5.ami3,210
232,CO_HistogramAMI_std2_5_4,"information,correlation,AMI",CO_HistogramAMI_std2_5.ami4,210
233,CO_HistogramAMI_std2_5_5,"information,correlation,AMI",CO_HistogramAMI_std2_5.ami5,210
234,CO_HistogramAMI_std2_10_1,"information,correlation,AMI",CO_HistogramAMI_std2_10.ami1,211
235,CO_HistogramAMI_std2_10_2,"information,correlation,AMI",CO_HistogramAMI_std2_10.ami2,211
236,CO_HistogramAMI_std2_10_3,"information,correlation,AMI",CO_HistogramAMI_std2_10.ami3,211
237,CO_HistogramAMI_std2_10_4,"information,correlation,AMI",CO_HistogramAMI_std2_10.ami4,211
238,CO_HistogramAMI_std2_10_5,"information,correlation,AMI",CO_HistogramAMI_std2_10.ami5,211
239,CO_HistogramAMI_even_2_1,"information,correlation,AMI",CO_HistogramAMI_even_2.ami1,212
240,CO_HistogramAMI_even_2_2,"information,correlation,AMI",CO_HistogramAMI_even_2.ami2,212
241,CO_HistogramAMI_even_2_3,"information,correlation,AMI",CO_HistogramAMI_even_2.ami3,212
242,CO_HistogramAMI_even_2_4,"information,correlation,AMI",CO_HistogramAMI_even_2.ami4,212
243,CO_HistogramAMI_even_2_5,"information,correlation,AMI",CO_HistogramAMI_even_2.ami5,212
244,CO_HistogramAMI_even_5_1,"information,correlation,AMI",CO_HistogramAMI_even_5.ami1,213
245,CO_HistogramAMI_even_5_2,"information,correlation,AMI",CO_HistogramAMI_even_5.ami2,213
246,CO_HistogramAMI_even_5_3,"information,correlation,AMI",CO_HistogramAMI_even_5.ami3,213
247,CO_HistogramAMI_even_5_4,"information,correlation,AMI",CO_HistogramAMI_even_5.ami4,213
248,CO_HistogramAMI_even_5_5,"information,correlation,AMI",CO_HistogramAMI_even_5.ami5,213
249,CO_HistogramAMI_even_10_1,"information,correlation,AMI",CO_HistogramAMI_even_10.ami1,214
250,CO_HistogramAMI_even_10_2,"information,correlation,AMI",CO_HistogramAMI_even_10.ami2,214
251,CO_HistogramAMI_even_10_3,"information,correlation,AMI",CO_HistogramAMI_even_10.ami3,214
252,CO_HistogramAMI_even_10_4,"information,correlation,AMI",CO_HistogramAMI_even_10.ami4,214
253,CO_HistogramAMI_even_10_5,"information,correlation,AMI",CO_HistogramAMI_even_10.ami5,214
254,CO_HistogramAMI_quantiles_2_1,"information,correlation,AMI",CO_HistogramAMI_quantiles_2.ami1,215
255,CO_HistogramAMI_quantiles_2_2,"information,correlation,AMI",CO_HistogramAMI_quantiles_2.ami2,215
256,CO_HistogramAMI_quantiles_2_3,"information,correlation,AMI",CO_HistogramAMI_quantiles_2.ami3,215
257,CO_HistogramAMI_quantiles_2_4,"information,correlation,AMI",CO_HistogramAMI_quantiles_2.ami4,215
258,CO_HistogramAMI_quantiles_2_5,"information,correlation,AMI",CO_HistogramAMI_quantiles_2.ami5,215
259,CO_HistogramAMI_quantiles_5_1,"information,correlation,AMI",CO_HistogramAMI_quantiles_5.ami1,216
260,CO_HistogramAMI_quantiles_5_2,"information,correlation,AMI",CO_HistogramAMI_quantiles_5.ami2,216
261,CO_HistogramAMI_quantiles_5_3,"information,correlation,AMI",CO_HistogramAMI_quantiles_5.ami3,216
262,CO_HistogramAMI_quantiles_5_4,"information,correlation,AMI",CO_HistogramAMI_quantiles_5.ami4,216
263,CO_HistogramAMI_quantiles_5_5,"information,correlation,AMI",CO_HistogramAMI_quantiles_5.ami5,216
264,CO_HistogramAMI_quantiles_10_1,"information,correlation,AMI",CO_HistogramAMI_quantiles_10.ami1,217
265,CO_HistogramAMI_quantiles_10_2,"information,correlation,AMI",CO_HistogramAMI_quantiles_10.ami2,217
266,CO_HistogramAMI_quantiles_10_3,"information,correlation,AMI",CO_HistogramAMI_quantiles_10.ami3,217
267,CO_HistogramAMI_quantiles_10_4,"information,correlation,AMI",CO_HistogramAMI_quantiles_10.ami4,217
268,CO_HistogramAMI_quantiles_10_5,"information,correlation,AMI",CO_HistogramAMI_quantiles_10.ami5,217
269,IN_AutoMutualInfoStats_40_gaussian_ami1,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami1,713
270,IN_AutoMutualInfoStats_40_gaussian_ami2,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami2,713
271,IN_AutoMutualInfoStats_40_gaussian_ami3,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami3,713
272,IN_AutoMutualInfoStats_40_gaussian_ami4,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami4,713
273,IN_AutoMutualInfoStats_40_gaussian_ami5,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami5,713
274,IN_AutoMutualInfoStats_40_gaussian_ami6,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami6,713
275,IN_AutoMutualInfoStats_40_gaussian_ami7,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami7,713
276,IN_AutoMutualInfoStats_40_gaussian_ami8,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami8,713
277,IN_AutoMutualInfoStats_40_gaussian_ami9,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami9,713
278,IN_AutoMutualInfoStats_40_gaussian_ami10,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami10,713
279,IN_AutoMutualInfoStats_40_gaussian_ami11,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami11,713
280,IN_AutoMutualInfoStats_40_gaussian_ami12,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami12,713
281,IN_AutoMutualInfoStats_40_gaussian_ami13,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami13,713
282,IN_AutoMutualInfoStats_40_gaussian_ami14,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami14,713
283,IN_AutoMutualInfoStats_40_gaussian_ami15,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami15,713
284,IN_AutoMutualInfoStats_40_gaussian_ami16,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami16,713
285,IN_AutoMutualInfoStats_40_gaussian_ami17,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami17,713
286,IN_AutoMutualInfoStats_40_gaussian_ami18,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami18,713
287,IN_AutoMutualInfoStats_40_gaussian_ami19,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami19,713
288,IN_AutoMutualInfoStats_40_gaussian_ami20,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami20,713
289,IN_AutoMutualInfoStats_40_gaussian_ami21,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami21,713
290,IN_AutoMutualInfoStats_40_gaussian_ami22,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami22,713
291,IN_AutoMutualInfoStats_40_gaussian_ami23,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami23,713
292,IN_AutoMutualInfoStats_40_gaussian_ami24,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami24,713
293,IN_AutoMutualInfoStats_40_gaussian_ami25,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami25,713
294,IN_AutoMutualInfoStats_40_gaussian_ami26,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami26,713
295,IN_AutoMutualInfoStats_40_gaussian_ami27,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami27,713
296,IN_AutoMutualInfoStats_40_gaussian_ami28,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami28,713
297,IN_AutoMutualInfoStats_40_gaussian_ami29,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami29,713
298,IN_AutoMutualInfoStats_40_gaussian_ami30,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami30,713
299,IN_AutoMutualInfoStats_40_gaussian_ami31,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami31,713
300,IN_AutoMutualInfoStats_40_gaussian_ami32,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami32,713
301,IN_AutoMutualInfoStats_40_gaussian_ami33,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami33,713
302,IN_AutoMutualInfoStats_40_gaussian_ami34,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami34,713
303,IN_AutoMutualInfoStats_40_gaussian_ami35,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami35,713
304,IN_AutoMutualInfoStats_40_gaussian_ami36,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami36,713
305,IN_AutoMutualInfoStats_40_gaussian_ami37,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami37,713
306,IN_AutoMutualInfoStats_40_gaussian_ami38,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami38,713
307,IN_AutoMutualInfoStats_40_gaussian_ami39,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami39,713
308,IN_AutoMutualInfoStats_40_gaussian_ami40,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.ami40,713
309,IN_AutoMutualInfoStats_40_gaussian_mami,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.mami,713
310,IN_AutoMutualInfoStats_40_gaussian_stdami,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.stdami,713
311,IN_AutoMutualInfoStats_40_gaussian_pextrema,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pextrema,713
312,IN_AutoMutualInfoStats_40_gaussian_fmmi,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.fmmi,713
313,IN_AutoMutualInfoStats_40_gaussian_pmaxima,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pmaxima,713
314,IN_AutoMutualInfoStats_40_gaussian_modeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.modeperiodmax,713
315,IN_AutoMutualInfoStats_40_gaussian_pmodeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pmodeperiodmax,713
316,IN_AutoMutualInfoStats_40_gaussian_pminima,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pminima,713
317,IN_AutoMutualInfoStats_40_gaussian_modeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.modeperiodmin,713
318,IN_AutoMutualInfoStats_40_gaussian_pmodeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pmodeperiodmin,713
319,IN_AutoMutualInfoStats_40_gaussian_pcrossmean,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pcrossmean,713
320,IN_AutoMutualInfoStats_40_gaussian_pcrossmedian,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pcrossmedian,713
321,IN_AutoMutualInfoStats_40_gaussian_pcrossq10,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pcrossq10,713
322,IN_AutoMutualInfoStats_40_gaussian_pcrossq90,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.pcrossq90,713
323,IN_AutoMutualInfoStats_40_gaussian_amiac1,"information,correlation,AMI",IN_AutoMutualInfoStats_40_gaussian.amiac1,713
324,IN_AutoMutualInfoStats_40_kraskov1_4_ami1,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami1,714
325,IN_AutoMutualInfoStats_40_kraskov1_4_ami2,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami2,714
326,IN_AutoMutualInfoStats_40_kraskov1_4_ami3,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami3,714
327,IN_AutoMutualInfoStats_40_kraskov1_4_ami4,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami4,714
328,IN_AutoMutualInfoStats_40_kraskov1_4_ami5,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami5,714
329,IN_AutoMutualInfoStats_40_kraskov1_4_ami6,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami6,714
330,IN_AutoMutualInfoStats_40_kraskov1_4_ami7,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami7,714
331,IN_AutoMutualInfoStats_40_kraskov1_4_ami8,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami8,714
332,IN_AutoMutualInfoStats_40_kraskov1_4_ami9,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami9,714
333,IN_AutoMutualInfoStats_40_kraskov1_4_ami10,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami10,714
334,IN_AutoMutualInfoStats_40_kraskov1_4_ami11,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami11,714
335,IN_AutoMutualInfoStats_40_kraskov1_4_ami12,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami12,714
336,IN_AutoMutualInfoStats_40_kraskov1_4_ami13,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami13,714
337,IN_AutoMutualInfoStats_40_kraskov1_4_ami14,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami14,714
338,IN_AutoMutualInfoStats_40_kraskov1_4_ami15,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami15,714
339,IN_AutoMutualInfoStats_40_kraskov1_4_ami16,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami16,714
340,IN_AutoMutualInfoStats_40_kraskov1_4_ami17,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami17,714
341,IN_AutoMutualInfoStats_40_kraskov1_4_ami18,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami18,714
342,IN_AutoMutualInfoStats_40_kraskov1_4_ami19,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami19,714
343,IN_AutoMutualInfoStats_40_kraskov1_4_ami20,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami20,714
344,IN_AutoMutualInfoStats_40_kraskov1_4_ami21,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami21,714
345,IN_AutoMutualInfoStats_40_kraskov1_4_ami22,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami22,714
346,IN_AutoMutualInfoStats_40_kraskov1_4_ami23,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami23,714
347,IN_AutoMutualInfoStats_40_kraskov1_4_ami24,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami24,714
348,IN_AutoMutualInfoStats_40_kraskov1_4_ami25,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami25,714
349,IN_AutoMutualInfoStats_40_kraskov1_4_ami26,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami26,714
350,IN_AutoMutualInfoStats_40_kraskov1_4_ami27,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami27,714
351,IN_AutoMutualInfoStats_40_kraskov1_4_ami28,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami28,714
352,IN_AutoMutualInfoStats_40_kraskov1_4_ami29,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami29,714
353,IN_AutoMutualInfoStats_40_kraskov1_4_ami30,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami30,714
354,IN_AutoMutualInfoStats_40_kraskov1_4_ami31,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami31,714
355,IN_AutoMutualInfoStats_40_kraskov1_4_ami32,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami32,714
356,IN_AutoMutualInfoStats_40_kraskov1_4_ami33,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami33,714
357,IN_AutoMutualInfoStats_40_kraskov1_4_ami34,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami34,714
358,IN_AutoMutualInfoStats_40_kraskov1_4_ami35,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami35,714
359,IN_AutoMutualInfoStats_40_kraskov1_4_ami36,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami36,714
360,IN_AutoMutualInfoStats_40_kraskov1_4_ami37,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami37,714
361,IN_AutoMutualInfoStats_40_kraskov1_4_ami38,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami38,714
362,IN_AutoMutualInfoStats_40_kraskov1_4_ami39,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami39,714
363,IN_AutoMutualInfoStats_40_kraskov1_4_ami40,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.ami40,714
364,IN_AutoMutualInfoStats_40_kraskov1_4_mami,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.mami,714
365,IN_AutoMutualInfoStats_40_kraskov1_4_stdami,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.stdami,714
366,IN_AutoMutualInfoStats_40_kraskov1_4_pextrema,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pextrema,714
367,IN_AutoMutualInfoStats_40_kraskov1_4_fmmi,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.fmmi,714
368,IN_AutoMutualInfoStats_40_kraskov1_4_pmaxima,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pmaxima,714
369,IN_AutoMutualInfoStats_40_kraskov1_4_modeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.modeperiodmax,714
370,IN_AutoMutualInfoStats_40_kraskov1_4_pmodeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pmodeperiodmax,714
371,IN_AutoMutualInfoStats_40_kraskov1_4_pminima,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pminima,714
372,IN_AutoMutualInfoStats_40_kraskov1_4_modeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.modeperiodmin,714
373,IN_AutoMutualInfoStats_40_kraskov1_4_pmodeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pmodeperiodmin,714
374,IN_AutoMutualInfoStats_40_kraskov1_4_pcrossmean,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pcrossmean,714
375,IN_AutoMutualInfoStats_40_kraskov1_4_pcrossmedian,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pcrossmedian,714
376,IN_AutoMutualInfoStats_40_kraskov1_4_pcrossq10,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pcrossq10,714
377,IN_AutoMutualInfoStats_40_kraskov1_4_pcrossq90,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.pcrossq90,714
378,IN_AutoMutualInfoStats_40_kraskov1_4_amiac1,"information,correlation,AMI",IN_AutoMutualInfoStats_40_kraskov1_4.amiac1,714
379,IN_AutoMutualInfoStats_diff_20_gaussian_ami1,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami1,715
380,IN_AutoMutualInfoStats_diff_20_gaussian_ami2,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami2,715
381,IN_AutoMutualInfoStats_diff_20_gaussian_ami3,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami3,715
382,IN_AutoMutualInfoStats_diff_20_gaussian_ami4,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami4,715
383,IN_AutoMutualInfoStats_diff_20_gaussian_ami5,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami5,715
384,IN_AutoMutualInfoStats_diff_20_gaussian_ami6,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami6,715
385,IN_AutoMutualInfoStats_diff_20_gaussian_ami7,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami7,715
386,IN_AutoMutualInfoStats_diff_20_gaussian_ami8,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami8,715
387,IN_AutoMutualInfoStats_diff_20_gaussian_ami9,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami9,715
388,IN_AutoMutualInfoStats_diff_20_gaussian_ami10,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami10,715
389,IN_AutoMutualInfoStats_diff_20_gaussian_ami11,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami11,715
390,IN_AutoMutualInfoStats_diff_20_gaussian_ami12,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami12,715
391,IN_AutoMutualInfoStats_diff_20_gaussian_ami13,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami13,715
392,IN_AutoMutualInfoStats_diff_20_gaussian_ami14,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami14,715
393,IN_AutoMutualInfoStats_diff_20_gaussian_ami15,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami15,715
394,IN_AutoMutualInfoStats_diff_20_gaussian_ami16,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami16,715
395,IN_AutoMutualInfoStats_diff_20_gaussian_ami17,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami17,715
396,IN_AutoMutualInfoStats_diff_20_gaussian_ami18,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami18,715
397,IN_AutoMutualInfoStats_diff_20_gaussian_ami19,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami19,715
398,IN_AutoMutualInfoStats_diff_20_gaussian_ami20,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.ami20,715
399,IN_AutoMutualInfoStats_diff_20_gaussian_mami,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.mami,715
400,IN_AutoMutualInfoStats_diff_20_gaussian_stdami,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.stdami,715
401,IN_AutoMutualInfoStats_diff_20_gaussian_pextrema,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pextrema,715
402,IN_AutoMutualInfoStats_diff_20_gaussian_fmmi,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.fmmi,715
403,IN_AutoMutualInfoStats_diff_20_gaussian_pmaxima,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pmaxima,715
404,IN_AutoMutualInfoStats_diff_20_gaussian_modeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.modeperiodmax,715
405,IN_AutoMutualInfoStats_diff_20_gaussian_pmodeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pmodeperiodmax,715
406,IN_AutoMutualInfoStats_diff_20_gaussian_pminima,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pminima,715
407,IN_AutoMutualInfoStats_diff_20_gaussian_modeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.modeperiodmin,715
408,IN_AutoMutualInfoStats_diff_20_gaussian_pmodeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pmodeperiodmin,715
409,IN_AutoMutualInfoStats_diff_20_gaussian_pcrossmean,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pcrossmean,715
410,IN_AutoMutualInfoStats_diff_20_gaussian_pcrossmedian,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pcrossmedian,715
411,IN_AutoMutualInfoStats_diff_20_gaussian_pcrossq10,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pcrossq10,715
412,IN_AutoMutualInfoStats_diff_20_gaussian_pcrossq90,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.pcrossq90,715
413,IN_AutoMutualInfoStats_diff_20_gaussian_amiac1,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_gaussian.amiac1,715
414,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami1,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami1,716
415,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami2,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami2,716
416,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami3,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami3,716
417,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami4,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami4,716
418,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami5,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami5,716
419,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami6,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami6,716
420,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami7,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami7,716
421,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami8,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami8,716
422,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami9,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami9,716
423,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami10,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami10,716
424,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami11,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami11,716
425,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami12,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami12,716
426,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami13,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami13,716
427,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami14,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami14,716
428,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami15,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami15,716
429,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami16,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami16,716
430,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami17,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami17,716
431,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami18,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami18,716
432,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami19,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami19,716
433,IN_AutoMutualInfoStats_diff_20_kraskov1_4_ami20,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.ami20,716
434,IN_AutoMutualInfoStats_diff_20_kraskov1_4_mami,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.mami,716
435,IN_AutoMutualInfoStats_diff_20_kraskov1_4_stdami,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.stdami,716
436,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pextrema,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pextrema,716
437,IN_AutoMutualInfoStats_diff_20_kraskov1_4_fmmi,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.fmmi,716
438,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pmaxima,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pmaxima,716
439,IN_AutoMutualInfoStats_diff_20_kraskov1_4_modeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.modeperiodmax,716
440,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pmodeperiodmax,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pmodeperiodmax,716
441,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pminima,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pminima,716
442,IN_AutoMutualInfoStats_diff_20_kraskov1_4_modeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.modeperiodmin,716
443,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pmodeperiodmin,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pmodeperiodmin,716
444,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pcrossmean,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pcrossmean,716
445,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pcrossmedian,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pcrossmedian,716
446,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pcrossq10,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pcrossq10,716
447,IN_AutoMutualInfoStats_diff_20_kraskov1_4_pcrossq90,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.pcrossq90,716
448,IN_AutoMutualInfoStats_diff_20_kraskov1_4_amiac1,"information,correlation,AMI",IN_AutoMutualInfoStats_diff_20_kraskov1_4.amiac1,716
449,CO_CompareMinAMI_std1_2_80_min,"correlation,AMI",CO_CompareMinAMI_std1_2_80.min,717
450,CO_CompareMinAMI_std1_2_80_max,"correlation,AMI",CO_CompareMinAMI_std1_2_80.max,717
451,CO_CompareMinAMI_std1_2_80_range,"correlation,AMI",CO_CompareMinAMI_std1_2_80.range,717
452,CO_CompareMinAMI_std1_2_80_median,"correlation,AMI",CO_CompareMinAMI_std1_2_80.median,717
453,CO_CompareMinAMI_std1_2_80_mean,"correlation,AMI",CO_CompareMinAMI_std1_2_80.mean,717
454,CO_CompareMinAMI_std1_2_80_std,"correlation,AMI",CO_CompareMinAMI_std1_2_80.std,717
455,CO_CompareMinAMI_std1_2_80_nunique,"correlation,AMI",CO_CompareMinAMI_std1_2_80.nunique,717
456,CO_CompareMinAMI_std1_2_80_mode,"correlation,AMI",CO_CompareMinAMI_std1_2_80.mode,717
457,CO_CompareMinAMI_std1_2_80_modef,"correlation,AMI",CO_CompareMinAMI_std1_2_80.modef,717
458,CO_CompareMinAMI_std1_2_80_conv4,"correlation,AMI",CO_CompareMinAMI_std1_2_80.conv4,717
459,CO_CompareMinAMI_std1_2_80_nlocmax,"correlation,AMI",CO_CompareMinAMI_std1_2_80.nlocmax,717
460,CO_CompareMinAMI_quantiles_2_80_min,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.min,718
461,CO_CompareMinAMI_quantiles_2_80_max,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.max,718
462,CO_CompareMinAMI_quantiles_2_80_range,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.range,718
463,CO_CompareMinAMI_quantiles_2_80_median,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.median,718
464,CO_CompareMinAMI_quantiles_2_80_mean,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.mean,718
465,CO_CompareMinAMI_quantiles_2_80_std,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.std,718
466,CO_CompareMinAMI_quantiles_2_80_nunique,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.nunique,718
467,CO_CompareMinAMI_quantiles_2_80_mode,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.mode,718
468,CO_CompareMinAMI_quantiles_2_80_modef,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.modef,718
469,CO_CompareMinAMI_quantiles_2_80_conv4,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.conv4,718
470,CO_CompareMinAMI_quantiles_2_80_nlocmax,"correlation,AMI",CO_CompareMinAMI_quantiles_2_80.nlocmax,718
471,CO_CompareMinAMI_even_2_80_min,"correlation,AMI",CO_CompareMinAMI_even_2_80.min,719
472,CO_CompareMinAMI_even_2_80_max,"correlation,AMI",CO_CompareMinAMI_even_2_80.max,719
473,CO_CompareMinAMI_even_2_80_range,"correlation,AMI",CO_CompareMinAMI_even_2_80.range,719
474,CO_CompareMinAMI_even_2_80_median,"correlation,AMI",CO_CompareMinAMI_even_2_80.median,719
475,CO_CompareMinAMI_even_2_80_mean,"correlation,AMI",CO_CompareMinAMI_even_2_80.mean,719
476,CO_CompareMinAMI_even_2_80_std,"correlation,AMI",CO_CompareMinAMI_even_2_80.std,719
477,CO_CompareMinAMI_even_2_80_nunique,"correlation,AMI",CO_CompareMinAMI_even_2_80.nunique,719
478,CO_CompareMinAMI_even_2_80_mode,"correlation,AMI",CO_CompareMinAMI_even_2_80.mode,719
479,CO_CompareMinAMI_even_2_80_modef,"correlation,AMI",CO_CompareMinAMI_even_2_80.modef,719
480,CO_CompareMinAMI_even_2_80_conv4,"correlation,AMI",CO_CompareMinAMI_even_2_80.conv4,719
481,CO_CompareMinAMI_even_2_80_nlocmax,"correlation,AMI",CO_CompareMinAMI_even_2_80.nlocmax,719
482,CO_CompareMinAMI_std2_2_80_min,"correlation,AMI",CO_CompareMinAMI_std2_2_80.min,720
483,CO_CompareMinAMI_std2_2_80_max,"correlation,AMI",CO_CompareMinAMI_std2_2_80.max,720
484,CO_CompareMinAMI_std2_2_80_range,"correlation,AMI",CO_CompareMinAMI_std2_2_80.range,720
485,CO_CompareMinAMI_std2_2_80_median,"correlation,AMI",CO_CompareMinAMI_std2_2_80.median,720
486,CO_CompareMinAMI_std2_2_80_mean,"correlation,AMI",CO_CompareMinAMI_std2_2_80.mean,720
487,CO_CompareMinAMI_std2_2_80_std,"correlation,AMI",CO_CompareMinAMI_std2_2_80.std,720
488,CO_CompareMinAMI_std2_2_80_nunique,"correlation,AMI",CO_CompareMinAMI_std2_2_80.nunique,720
489,CO_CompareMinAMI_std2_2_80_mode,"correlation,AMI",CO_CompareMinAMI_std2_2_80.mode,720
490,CO_CompareMinAMI_std2_2_80_modef,"correlation,AMI",CO_CompareMinAMI_std2_2_80.modef,720
491,CO_CompareMinAMI_std2_2_80_conv4,"correlation,AMI",CO_CompareMinAMI_std2_2_80.conv4,720
492,CO_CompareMinAMI_std2_2_80_nlocmax,"correlation,AMI",CO_CompareMinAMI_std2_2_80.nlocmax,720
493,CO_glscf_1_1_1,"correlation,glscf",CO_glscf_1_1_1,218
494,CO_glscf_1_1_2,"correlation,glscf",CO_glscf_1_1_2,219
495,CO_glscf_1_1_3,"correlation,glscf",CO_glscf_1_1_3,220
496,CO_glscf_1_1_4,"correlation,glscf",CO_glscf_1_1_4,221
497,CO_glscf_1_1_5,"correlation,glscf",CO_glscf_1_1_5,222
498,CO_glscf_1_1_tau,"correlation,glscf",CO_glscf_1_1_tau,223
499,CO_glscf_1_2_1,"correlation,glscf",CO_glscf_1_2_1,224
500,CO_glscf_1_2_2,"correlation,glscf",CO_glscf_1_2_2,225
501,CO_glscf_1_2_3,"correlation,glscf",CO_glscf_1_2_3,226
502,CO_glscf_1_2_4,"correlation,glscf",CO_glscf_1_2_4,227
503,CO_glscf_1_2_5,"correlation,glscf",CO_glscf_1_2_5,228
504,CO_glscf_1_2_tau,"correlation,glscf",CO_glscf_1_2_tau,229
505,CO_glscf_1_5_1,"correlation,glscf",CO_glscf_1_5_1,230
506,CO_glscf_1_5_2,"correlation,glscf",CO_glscf_1_5_2,231
507,CO_glscf_1_5_3,"correlation,glscf",CO_glscf_1_5_3,232
508,CO_glscf_1_5_4,"correlation,glscf",CO_glscf_1_5_4,233
509,CO_glscf_1_5_5,"correlation,glscf",CO_glscf_1_5_5,234
510,CO_glscf_1_5_tau,"correlation,glscf",CO_glscf_1_5_tau,235
511,CO_glscf_1_10_1,"correlation,glscf",CO_glscf_1_10_1,236
512,CO_glscf_1_10_2,"correlation,glscf",CO_glscf_1_10_2,237
513,CO_glscf_1_10_3,"correlation,glscf",CO_glscf_1_10_3,238
514,CO_glscf_1_10_4,"correlation,glscf",CO_glscf_1_10_4,239
515,CO_glscf_1_10_5,"correlation,glscf",CO_glscf_1_10_5,240
516,CO_glscf_1_10_tau,"correlation,glscf",CO_glscf_1_10_tau,241
517,CO_glscf_2_2_1,"correlation,glscf",CO_glscf_2_2_1,242
518,CO_glscf_2_2_2,"correlation,glscf",CO_glscf_2_2_2,243
519,CO_glscf_2_2_3,"correlation,glscf",CO_glscf_2_2_3,244
520,CO_glscf_2_2_4,"correlation,glscf",CO_glscf_2_2_4,245
521,CO_glscf_2_2_5,"correlation,glscf",CO_glscf_2_2_5,246
522,CO_glscf_2_2_tau,"correlation,glscf",CO_glscf_2_2_tau,247
523,CO_glscf_2_5_1,"correlation,glscf",CO_glscf_2_5_1,248
524,CO_glscf_2_5_2,"correlation,glscf",CO_glscf_2_5_2,249
525,CO_glscf_2_5_3,"correlation,glscf",CO_glscf_2_5_3,250
526,CO_glscf_2_5_4,"correlation,glscf",CO_glscf_2_5_4,251
527,CO_glscf_2_5_5,"correlation,glscf",CO_glscf_2_5_5,252
528,CO_glscf_2_5_tau,"correlation,glscf",CO_glscf_2_5_tau,253
529,CO_fzcglscf_1_1,"correlation,glscf,tau",CO_fzcglscf_1_1,254
530,CO_fzcglscf_1_2,"correlation,glscf,tau",CO_fzcglscf_1_2,255
531,CO_fzcglscf_1_3,"correlation,glscf,tau",CO_fzcglscf_1_3,256
532,CO_fzcglscf_1_4,"correlation,glscf,tau",CO_fzcglscf_1_4,257
533,CO_fzcglscf_1_5,"correlation,glscf,tau",CO_fzcglscf_1_5,258
534,CO_fzcglscf_1_6,"correlation,glscf,tau",CO_fzcglscf_1_6,259
535,CO_fzcglscf_1_7,"correlation,glscf,tau",CO_fzcglscf_1_7,260
536,CO_fzcglscf_1_8,"correlation,glscf,tau",CO_fzcglscf_1_8,261
537,CO_fzcglscf_1_9,"correlation,glscf,tau",CO_fzcglscf_1_9,262
538,CO_fzcglscf_1_10,"correlation,glscf,tau",CO_fzcglscf_1_10,263
539,CO_fzcglscf_2_2,"correlation,glscf,tau",CO_fzcglscf_2_2,264
540,CO_fzcglscf_2_5,"correlation,glscf,tau",CO_fzcglscf_2_5,265
541,CO_fzcglscf_2_10,"correlation,glscf,tau",CO_fzcglscf_2_10,266
542,CO_fzcglscf_5_5,"correlation,glscf,tau",CO_fzcglscf_5_5,267
543,CO_fzcglscf_5_10,"correlation,glscf,tau",CO_fzcglscf_5_10,268
544,CO_fzcglscf_10_10,"correlation,glscf,tau",CO_fzcglscf_10_10,269
545,seasonality_test,"periodicity",DT_IsSeasonal,270
546,StatAvl25,"stationarity,StatAv",StatAvl25,271
547,StatAvl50,"stationarity,StatAv",StatAvl50,272
548,StatAvl100,"stationarity,StatAv",StatAvl100,273
549,StatAvl150,"stationarity,StatAv",StatAvl150,274
550,StatAvl200,"stationarity,StatAv",StatAvl200,275
551,StatAvl250,"stationarity,StatAv",StatAvl250,276
552,StatAvl500,"stationarity,StatAv",StatAvl500,277
553,StatAvl1000,"stationarity,StatAv",StatAvl1000,278
554,StatAv2,"stationarity,StatAv",SY_SlidingWindow_m_s_2_1,279
555,StatAv3,"stationarity,StatAv",SY_SlidingWindow_m_s_3_1,280
556,StatAv4,"stationarity,StatAv",SY_SlidingWindow_m_s_4_1,281
557,StatAv5,"stationarity,StatAv",SY_SlidingWindow_m_s_5_1,282
558,StatAv6,"stationarity,StatAv",SY_SlidingWindow_m_s_6_1,283
559,StatAv7,"stationarity,StatAv",SY_SlidingWindow_m_s_7_1,284
560,StatAv8,"stationarity,StatAv",SY_SlidingWindow_m_s_8_1,285
561,StatAv9,"stationarity,StatAv",SY_SlidingWindow_m_s_9_1,286
562,StatAv10,"stationarity,StatAv",SY_SlidingWindow_m_s_10_1,287
563,SY_SlidingWindow_m_s2_2,"stationarity",SY_SlidingWindow_m_s2_2,288
564,SY_SlidingWindow_m_s2_10,"stationarity",SY_SlidingWindow_m_s2_10,289
565,SY_SlidingWindow_m_s5_2,"stationarity",SY_SlidingWindow_m_s5_2,290
566,SY_SlidingWindow_m_s5_10,"stationarity",SY_SlidingWindow_m_s5_10,291
567,SY_SlidingWindow_m_s10_2,"stationarity",SY_SlidingWindow_m_s10_2,292
568,SY_SlidingWindow_m_s10_10,"stationarity",SY_SlidingWindow_m_s10_10,293
569,SY_SlidingWindow_m_sampen2_10,"stationarity",SY_SlidingWindow_m_sampen2_10,294
570,SY_SlidingWindow_m_sampen5_10,"stationarity",SY_SlidingWindow_m_sampen5_10,295
571,SY_SlidingWindow_m_sampen10_1,"stationarity",SY_SlidingWindow_m_sampen10_1,296
572,SY_SlidingWindow_m_sampen10_2,"stationarity",SY_SlidingWindow_m_sampen10_2,297
573,SY_SlidingWindow_m_sampen10_10,"stationarity",SY_SlidingWindow_m_sampen10_10,298
574,SY_SlidingWindow_m_ent2_1,"stationarity",SY_SlidingWindow_m_ent2_1,299
575,SY_SlidingWindow_m_ent2_2,"stationarity",SY_SlidingWindow_m_ent2_2,300
576,SY_SlidingWindow_m_ent2_10,"stationarity",SY_SlidingWindow_m_ent2_10,301
577,SY_SlidingWindow_m_ent5_1,"stationarity",SY_SlidingWindow_m_ent5_1,302
578,SY_SlidingWindow_m_ent5_2,"stationarity",SY_SlidingWindow_m_ent5_2,303
579,SY_SlidingWindow_m_ent5_10,"stationarity",SY_SlidingWindow_m_ent5_10,304
580,SY_SlidingWindow_m_ent10_1,"stationarity",SY_SlidingWindow_m_ent10_1,305
581,SY_SlidingWindow_m_ent10_2,"stationarity",SY_SlidingWindow_m_ent10_2,306
582,SY_SlidingWindow_m_ent10_10,"stationarity",SY_SlidingWindow_m_ent10_10,307
583,SY_SlidingWindow_s_s2_1,"stationarity",SY_SlidingWindow_s_s2_1,308
584,SY_SlidingWindow_s_s2_2,"stationarity",SY_SlidingWindow_s_s2_2,309
585,SY_SlidingWindow_s_s2_10,"stationarity",SY_SlidingWindow_s_s2_10,310
586,SY_SlidingWindow_s_s5_1,"stationarity",SY_SlidingWindow_s_s5_1,311
587,SY_SlidingWindow_s_s5_2,"stationarity",SY_SlidingWindow_s_s5_2,312
588,SY_SlidingWindow_s_s5_10,"stationarity",SY_SlidingWindow_s_s5_10,313
589,SY_SlidingWindow_s_s10_1,"stationarity",SY_SlidingWindow_s_s10_1,314
590,SY_SlidingWindow_s_s10_2,"stationarity",SY_SlidingWindow_s_s10_2,315
591,SY_SlidingWindow_s_s10_10,"stationarity",SY_SlidingWindow_s_s10_10,316
592,SY_SlidingWindow_s_sampen2_10,"stationarity",SY_SlidingWindow_s_sampen2_10,317
593,SY_SlidingWindow_s_sampen5_10,"stationarity",SY_SlidingWindow_s_sampen5_10,318
594,SY_SlidingWindow_s_sampen10_1,"stationarity",SY_SlidingWindow_s_sampen10_1,319
595,SY_SlidingWindow_s_sampen10_2,"stationarity",SY_SlidingWindow_s_sampen10_2,320
596,SY_SlidingWindow_s_sampen10_10,"stationarity",SY_SlidingWindow_s_sampen10_10,321
597,SY_SlidingWindow_s_ent2_1,"stationarity",SY_SlidingWindow_s_ent2_1,322
598,SY_SlidingWindow_s_ent2_2,"stationarity",SY_SlidingWindow_s_ent2_2,323
599,SY_SlidingWindow_s_ent2_10,"stationarity",SY_SlidingWindow_s_ent2_10,324
600,SY_SlidingWindow_s_ent5_1,"stationarity",SY_SlidingWindow_s_ent5_1,325
601,SY_SlidingWindow_s_ent5_2,"stationarity",SY_SlidingWindow_s_ent5_2,326
602,SY_SlidingWindow_s_ent5_10,"stationarity",SY_SlidingWindow_s_ent5_10,327
603,SY_SlidingWindow_s_ent10_1,"stationarity",SY_SlidingWindow_s_ent10_1,328
604,SY_SlidingWindow_s_ent10_2,"stationarity",SY_SlidingWindow_s_ent10_2,329
605,SY_SlidingWindow_s_ent10_10,"stationarity",SY_SlidingWindow_s_ent10_10,330
606,SY_SlidingWindow_ent_s2_1,"stationarity",SY_SlidingWindow_ent_s2_1,331
607,SY_SlidingWindow_ent_s2_2,"stationarity",SY_SlidingWindow_ent_s2_2,332
608,SY_SlidingWindow_ent_s2_10,"stationarity",SY_SlidingWindow_ent_s2_10,333
609,SY_SlidingWindow_ent_s5_1,"stationarity",SY_SlidingWindow_ent_s5_1,334
610,SY_SlidingWindow_ent_s5_2,"stationarity",SY_SlidingWindow_ent_s5_2,335
611,SY_SlidingWindow_ent_s5_10,"stationarity",SY_SlidingWindow_ent_s5_10,336
612,SY_SlidingWindow_ent_s10_1,"stationarity",SY_SlidingWindow_ent_s10_1,337
613,SY_SlidingWindow_ent_s10_2,"stationarity",SY_SlidingWindow_ent_s10_2,338
614,SY_SlidingWindow_ent_s10_10,"stationarity",SY_SlidingWindow_ent_s10_10,339
615,SY_SlidingWindow_ent_sampen2_10,"stationarity",SY_SlidingWindow_ent_sampen2_10,340
616,SY_SlidingWindow_ent_sampen5_10,"stationarity",SY_SlidingWindow_ent_sampen5_10,341
617,SY_SlidingWindow_ent_sampen10_2,"stationarity",SY_SlidingWindow_ent_sampen10_2,342
618,SY_SlidingWindow_ent_sampen10_10,"stationarity",SY_SlidingWindow_ent_sampen10_10,343
619,SY_SlidingWindow_ent_ent2_1,"stationarity",SY_SlidingWindow_ent_ent2_1,344
620,SY_SlidingWindow_ent_ent2_2,"stationarity",SY_SlidingWindow_ent_ent2_2,345
621,SY_SlidingWindow_ent_ent2_10,"stationarity",SY_SlidingWindow_ent_ent2_10,346
622,SY_SlidingWindow_ent_ent5_1,"stationarity",SY_SlidingWindow_ent_ent5_1,347
623,SY_SlidingWindow_ent_ent5_2,"stationarity",SY_SlidingWindow_ent_ent5_2,348
624,SY_SlidingWindow_ent_ent5_10,"stationarity",SY_SlidingWindow_ent_ent5_10,349
625,SY_SlidingWindow_ent_ent10_1,"stationarity",SY_SlidingWindow_ent_ent10_1,350
626,SY_SlidingWindow_ent_ent10_2,"stationarity",SY_SlidingWindow_ent_ent10_2,351
627,SY_SlidingWindow_ent_ent10_10,"stationarity",SY_SlidingWindow_ent_ent10_10,352
628,SY_SlidingWindow_sampen_s2_1,"stationarity",SY_SlidingWindow_sampen_s2_1,353
629,SY_SlidingWindow_sampen_s2_2,"stationarity",SY_SlidingWindow_sampen_s2_2,354
630,SY_SlidingWindow_sampen_s2_10,"stationarity",SY_SlidingWindow_sampen_s2_10,355
631,SY_SlidingWindow_sampen_s5_1,"stationarity",SY_SlidingWindow_sampen_s5_1,356
632,SY_SlidingWindow_sampen_s5_2,"stationarity",SY_SlidingWindow_sampen_s5_2,357
633,SY_SlidingWindow_sampen_s5_10,"stationarity",SY_SlidingWindow_sampen_s5_10,358
634,SY_SlidingWindow_sampen_s10_1,"stationarity",SY_SlidingWindow_sampen_s10_1,359
635,SY_SlidingWindow_sampen_s10_2,"stationarity",SY_SlidingWindow_sampen_s10_2,360
636,SY_SlidingWindow_sampen_s10_10,"stationarity",SY_SlidingWindow_sampen_s10_10,361
637,SY_SlidingWindow_sampen_sampen2_10,"stationarity",SY_SlidingWindow_sampen_sampen2_10,362
638,SY_SlidingWindow_sampen_sampen5_10,"stationarity",SY_SlidingWindow_sampen_sampen5_10,363
639,SY_SlidingWindow_sampen_sampen10_1,"stationarity",SY_SlidingWindow_sampen_sampen10_1,364
640,SY_SlidingWindow_sampen_sampen10_2,"stationarity",SY_SlidingWindow_sampen_sampen10_2,365
641,SY_SlidingWindow_sampen_sampen10_10,"stationarity",SY_SlidingWindow_sampen_sampen10_10,366
642,SY_SlidingWindow_sampen_ent2_1,"stationarity",SY_SlidingWindow_sampen_ent2_1,367
643,SY_SlidingWindow_sampen_ent2_2,"stationarity",SY_SlidingWindow_sampen_ent2_2,368
644,SY_SlidingWindow_sampen_ent2_10,"stationarity",SY_SlidingWindow_sampen_ent2_10,369
645,SY_SlidingWindow_sampen_ent5_1,"stationarity",SY_SlidingWindow_sampen_ent5_1,370
646,SY_SlidingWindow_sampen_ent5_2,"stationarity",SY_SlidingWindow_sampen_ent5_2,371
647,SY_SlidingWindow_sampen_ent5_10,"stationarity",SY_SlidingWindow_sampen_ent5_10,372
648,SY_SlidingWindow_sampen_ent10_1,"stationarity",SY_SlidingWindow_sampen_ent10_1,373
649,SY_SlidingWindow_sampen_ent10_2,"stationarity",SY_SlidingWindow_sampen_ent10_2,374
650,SY_SlidingWindow_sampen_ent10_10,"stationarity",SY_SlidingWindow_sampen_ent10_10,375
651,SY_SlidingWindow_mom3_s2_1,"stationarity",SY_SlidingWindow_mom3_s2_1,376
652,SY_SlidingWindow_mom3_s2_2,"stationarity",SY_SlidingWindow_mom3_s2_2,377
653,SY_SlidingWindow_mom3_s2_10,"stationarity",SY_SlidingWindow_mom3_s2_10,378
654,SY_SlidingWindow_mom3_s5_1,"stationarity",SY_SlidingWindow_mom3_s5_1,379
655,SY_SlidingWindow_mom3_s5_2,"stationarity",SY_SlidingWindow_mom3_s5_2,380
656,SY_SlidingWindow_mom3_s5_10,"stationarity",SY_SlidingWindow_mom3_s5_10,381
657,SY_SlidingWindow_mom3_s10_1,"stationarity",SY_SlidingWindow_mom3_s10_1,382
658,SY_SlidingWindow_mom3_s10_2,"stationarity",SY_SlidingWindow_mom3_s10_2,383
659,SY_SlidingWindow_mom3_s10_10,"stationarity",SY_SlidingWindow_mom3_s10_10,384
660,SY_SlidingWindow_mom3_sampen2_10,"stationarity",SY_SlidingWindow_mom3_sampen2_10,385
661,SY_SlidingWindow_mom3_sampen5_10,"stationarity",SY_SlidingWindow_mom3_sampen5_10,386
662,SY_SlidingWindow_mom3_sampen10_1,"stationarity",SY_SlidingWindow_mom3_sampen10_1,387
663,SY_SlidingWindow_mom3_sampen10_2,"stationarity",SY_SlidingWindow_mom3_sampen10_2,388
664,SY_SlidingWindow_mom3_sampen10_10,"stationarity",SY_SlidingWindow_mom3_sampen10_10,389
665,SY_SlidingWindow_mom3_ent2_1,"stationarity",SY_SlidingWindow_mom3_ent2_1,390
666,SY_SlidingWindow_mom3_ent2_2,"stationarity",SY_SlidingWindow_mom3_ent2_2,391
667,SY_SlidingWindow_mom3_ent2_10,"stationarity",SY_SlidingWindow_mom3_ent2_10,392
668,SY_SlidingWindow_mom3_ent5_1,"stationarity",SY_SlidingWindow_mom3_ent5_1,393
669,SY_SlidingWindow_mom3_ent5_2,"stationarity",SY_SlidingWindow_mom3_ent5_2,394
670,SY_SlidingWindow_mom3_ent5_10,"stationarity",SY_SlidingWindow_mom3_ent5_10,395
671,SY_SlidingWindow_mom3_ent10_1,"stationarity",SY_SlidingWindow_mom3_ent10_1,396
672,SY_SlidingWindow_mom3_ent10_2,"stationarity",SY_SlidingWindow_mom3_ent10_2,397
673,SY_SlidingWindow_mom3_ent10_10,"stationarity",SY_SlidingWindow_mom3_ent10_10,398
674,SY_SlidingWindow_mom4_s2_1,"stationarity",SY_SlidingWindow_mom4_s2_1,399
675,SY_SlidingWindow_mom4_s2_2,"stationarity",SY_SlidingWindow_mom4_s2_2,400
676,SY_SlidingWindow_mom4_s2_10,"stationarity",SY_SlidingWindow_mom4_s2_10,401
677,SY_SlidingWindow_mom4_s5_1,"stationarity",SY_SlidingWindow_mom4_s5_1,402
678,SY_SlidingWindow_mom4_s5_2,"stationarity",SY_SlidingWindow_mom4_s5_2,403
679,SY_SlidingWindow_mom4_s5_10,"stationarity",SY_SlidingWindow_mom4_s5_10,404
680,SY_SlidingWindow_mom4_s10_1,"stationarity",SY_SlidingWindow_mom4_s10_1,405
681,SY_SlidingWindow_mom4_s10_2,"stationarity",SY_SlidingWindow_mom4_s10_2,406
682,SY_SlidingWindow_mom4_s10_10,"stationarity",SY_SlidingWindow_mom4_s10_10,407
683,SY_SlidingWindow_mom4_sampen2_10,"stationarity",SY_SlidingWindow_mom4_sampen2_10,408
684,SY_SlidingWindow_mom4_sampen5_10,"stationarity",SY_SlidingWindow_mom4_sampen5_10,409
685,SY_SlidingWindow_mom4_sampen10_1,"stationarity",SY_SlidingWindow_mom4_sampen10_1,410
686,SY_SlidingWindow_mom4_sampen10_2,"stationarity",SY_SlidingWindow_mom4_sampen10_2,411
687,SY_SlidingWindow_mom4_sampen10_10,"stationarity",SY_SlidingWindow_mom4_sampen10_10,412
688,SY_SlidingWindow_mom4_ent2_1,"stationarity",SY_SlidingWindow_mom4_ent2_1,413
689,SY_SlidingWindow_mom4_ent2_2,"stationarity",SY_SlidingWindow_mom4_ent2_2,414
690,SY_SlidingWindow_mom4_ent2_10,"stationarity",SY_SlidingWindow_mom4_ent2_10,415
691,SY_SlidingWindow_mom4_ent5_1,"stationarity",SY_SlidingWindow_mom4_ent5_1,416
692,SY_SlidingWindow_mom4_ent5_2,"stationarity",SY_SlidingWindow_mom4_ent5_2,417
693,SY_SlidingWindow_mom4_ent5_10,"stationarity",SY_SlidingWindow_mom4_ent5_10,418
694,SY_SlidingWindow_mom4_ent10_1,"stationarity",SY_SlidingWindow_mom4_ent10_1,419
695,SY_SlidingWindow_mom4_ent10_2,"stationarity",SY_SlidingWindow_mom4_ent10_2,420
696,SY_SlidingWindow_mom4_ent10_10,"stationarity",SY_SlidingWindow_mom4_ent10_10,421
697,SY_SlidingWindow_lil_s2_1,"stationarity",SY_SlidingWindow_lil_s2_1,422
698,SY_SlidingWindow_lil_s2_2,"stationarity",SY_SlidingWindow_lil_s2_2,423
699,SY_SlidingWindow_lil_s2_10,"stationarity",SY_SlidingWindow_lil_s2_10,424
700,SY_SlidingWindow_lil_s5_1,"stationarity",SY_SlidingWindow_lil_s5_1,425
701,SY_SlidingWindow_lil_s5_2,"stationarity",SY_SlidingWindow_lil_s5_2,426
702,SY_SlidingWindow_lil_s5_10,"stationarity",SY_SlidingWindow_lil_s5_10,427
703,SY_SlidingWindow_lil_s10_1,"stationarity",SY_SlidingWindow_lil_s10_1,428
704,SY_SlidingWindow_lil_s10_2,"stationarity",SY_SlidingWindow_lil_s10_2,429
705,SY_SlidingWindow_lil_s10_10,"stationarity",SY_SlidingWindow_lil_s10_10,430
706,SY_SlidingWindow_lil_sampen2_10,"stationarity",SY_SlidingWindow_lil_sampen2_10,431
707,SY_SlidingWindow_lil_sampen5_10,"stationarity",SY_SlidingWindow_lil_sampen5_10,432
708,SY_SlidingWindow_lil_sampen10_1,"stationarity",SY_SlidingWindow_lil_sampen10_1,433
709,SY_SlidingWindow_lil_sampen10_2,"stationarity",SY_SlidingWindow_lil_sampen10_2,434
710,SY_SlidingWindow_lil_sampen10_10,"stationarity",SY_SlidingWindow_lil_sampen10_10,435
711,SY_SlidingWindow_lil_ent2_1,"stationarity",SY_SlidingWindow_lil_ent2_1,436
712,SY_SlidingWindow_lil_ent2_2,"stationarity",SY_SlidingWindow_lil_ent2_2,437
713,SY_SlidingWindow_lil_ent2_10,"stationarity",SY_SlidingWindow_lil_ent2_10,438
714,SY_SlidingWindow_lil_ent5_1,"stationarity",SY_SlidingWindow_lil_ent5_1,439
715,SY_SlidingWindow_lil_ent5_2,"stationarity",SY_SlidingWindow_lil_ent5_2,440
716,SY_SlidingWindow_lil_ent5_10,"stationarity",SY_SlidingWindow_lil_ent5_10,441
717,SY_SlidingWindow_lil_ent10_1,"stationarity",SY_SlidingWindow_lil_ent10_1,442
718,SY_SlidingWindow_lil_ent10_2,"stationarity",SY_SlidingWindow_lil_ent10_2,443
719,SY_SlidingWindow_lil_ent10_10,"stationarity",SY_SlidingWindow_lil_ent10_10,444
720,SY_SlidingWindow_ac1_s2_1,"stationarity",SY_SlidingWindow_ac1_s2_1,445
721,SY_SlidingWindow_ac1_s2_2,"stationarity",SY_SlidingWindow_ac1_s2_2,446
722,SY_SlidingWindow_ac1_s2_10,"stationarity",SY_SlidingWindow_ac1_s2_10,447
723,SY_SlidingWindow_ac1_s5_1,"stationarity",SY_SlidingWindow_ac1_s5_1,448
724,SY_SlidingWindow_ac1_s5_2,"stationarity",SY_SlidingWindow_ac1_s5_2,449
725,SY_SlidingWindow_ac1_s5_10,"stationarity",SY_SlidingWindow_ac1_s5_10,450
726,SY_SlidingWindow_ac1_s10_1,"stationarity",SY_SlidingWindow_ac1_s10_1,451
727,SY_SlidingWindow_ac1_s10_2,"stationarity",SY_SlidingWindow_ac1_s10_2,452
728,SY_SlidingWindow_ac1_s10_10,"stationarity",SY_SlidingWindow_ac1_s10_10,453
729,SY_SlidingWindow_ac1_sampen2_10,"stationarity",SY_SlidingWindow_ac1_sampen2_10,454
730,SY_SlidingWindow_ac1_sampen5_10,"stationarity",SY_SlidingWindow_ac1_sampen5_10,455
731,SY_SlidingWindow_ac1_sampen10_1,"stationarity",SY_SlidingWindow_ac1_sampen10_1,456
732,SY_SlidingWindow_ac1_sampen10_2,"stationarity",SY_SlidingWindow_ac1_sampen10_2,457
733,SY_SlidingWindow_ac1_sampen10_10,"stationarity",SY_SlidingWindow_ac1_sampen10_10,458
734,SY_SlidingWindow_ac1_ent2_1,"stationarity",SY_SlidingWindow_ac1_ent2_1,459
735,SY_SlidingWindow_ac1_ent2_2,"stationarity",SY_SlidingWindow_ac1_ent2_2,460
736,SY_SlidingWindow_ac1_ent2_10,"stationarity",SY_SlidingWindow_ac1_ent2_10,461
737,SY_SlidingWindow_ac1_ent5_1,"stationarity",SY_SlidingWindow_ac1_ent5_1,462
738,SY_SlidingWindow_ac1_ent5_2,"stationarity",SY_SlidingWindow_ac1_ent5_2,463
739,SY_SlidingWindow_ac1_ent5_10,"stationarity",SY_SlidingWindow_ac1_ent5_10,464
740,SY_SlidingWindow_ac1_ent10_1,"stationarity",SY_SlidingWindow_ac1_ent10_1,465
741,SY_SlidingWindow_ac1_ent10_2,"stationarity",SY_SlidingWindow_ac1_ent10_2,466
742,SY_SlidingWindow_ac1_ent10_10,"stationarity",SY_SlidingWindow_ac1_ent10_10,467
743,SY_Trend_stdRatio,"stationarity",SY_Trend.stdRatio,468
744,SY_Trend_gradient,"stationarity",SY_Trend.gradient,468
745,SY_Trend_intercept,"stationarity",SY_Trend.intercept,468
746,SY_Trend_meanYC,"stationarity",SY_Trend.meanYC,468
747,SY_Trend_stdYC,"stationarity",SY_Trend.stdYC,468
748,SY_Trend_gradientYC,"stationarity",SY_Trend.gradientYC,468
749,SY_Trend_interceptYC,"stationarity",SY_Trend.interceptYC,468
750,SY_Trend_meanYC12,"stationarity",SY_Trend.meanYC12,468
751,SY_Trend_meanYC22,"stationarity",SY_Trend.meanYC22,468
752,SC_fastdfa_exponent,"scaling,mex",SC_fastdfa,894
753,SY_StdNthDer_1,"entropy",SY_StdNthDer_1,469
754,SY_StdNthDer_2,"entropy",SY_StdNthDer_2,470
755,SY_StdNthDer_3,"entropy",SY_StdNthDer_3,471
756,SY_StdNthDer_4,"entropy",SY_StdNthDer_4,472
757,SY_StdNthDer_5,"entropy",SY_StdNthDer_5,473
758,SY_StdNthDer_10,"entropy",SY_StdNthDer_10,474
759,SY_LocalDistributions_2_each,"stationarity",SY_LocalDistributions_2_each,490
760,SY_LocalGlobal_absmean_l10,"stationarity,distribution",SY_LocalGlobal_l10.absmean,495
761,SY_LocalGlobal_absmean_l20,"stationarity,distribution",SY_LocalGlobal_l20.absmean,496
762,SY_LocalGlobal_absmean_l50,"stationarity,distribution",SY_LocalGlobal_l50.absmean,497
763,SY_LocalGlobal_absmean_l100,"stationarity,distribution",SY_LocalGlobal_l100.absmean,498
764,SY_LocalGlobal_absmean_l500,"stationarity,distribution",SY_LocalGlobal_l500.absmean,499
765,SY_LocalGlobal_absmean_p01,"stationarity,distribution",SY_LocalGlobal_p01.absmean,500
766,SY_LocalGlobal_absmean_p05,"stationarity,distribution",SY_LocalGlobal_p05.absmean,501
767,SY_LocalGlobal_absmean_p1,"stationarity,distribution",SY_LocalGlobal_p1.absmean,502
768,SY_LocalGlobal_absmean_p5,"stationarity,distribution",SY_LocalGlobal_p5.absmean,503
769,SY_LocalGlobal_absmean_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.absmean,504
770,SY_LocalGlobal_absmean_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.absmean,505
771,SY_LocalGlobal_absmean_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.absmean,506
772,SY_LocalGlobal_absmean_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.absmean,507
773,SY_LocalGlobal_absmean_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.absmean,508
774,SY_LocalGlobal_std_l10,"stationarity,distribution",SY_LocalGlobal_l10.std,495
775,SY_LocalGlobal_std_l20,"stationarity,distribution",SY_LocalGlobal_l20.std,496
776,SY_LocalGlobal_std_l50,"stationarity,distribution",SY_LocalGlobal_l50.std,497
777,SY_LocalGlobal_std_l100,"stationarity,distribution",SY_LocalGlobal_l100.std,498
778,SY_LocalGlobal_std_l500,"stationarity,distribution",SY_LocalGlobal_l500.std,499
779,SY_LocalGlobal_std_p01,"stationarity,distribution",SY_LocalGlobal_p01.std,500
780,SY_LocalGlobal_std_p05,"stationarity,distribution",SY_LocalGlobal_p05.std,501
781,SY_LocalGlobal_std_p1,"stationarity,distribution",SY_LocalGlobal_p1.std,502
782,SY_LocalGlobal_std_p5,"stationarity,distribution",SY_LocalGlobal_p5.std,503
783,SY_LocalGlobal_std_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.std,504
784,SY_LocalGlobal_std_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.std,505
785,SY_LocalGlobal_std_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.std,506
786,SY_LocalGlobal_std_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.std,507
787,SY_LocalGlobal_std_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.std,508
788,SY_LocalGlobal_median_l10,"stationarity,distribution",SY_LocalGlobal_l10.median,495
789,SY_LocalGlobal_median_l20,"stationarity,distribution",SY_LocalGlobal_l20.median,496
790,SY_LocalGlobal_median_l50,"stationarity,distribution",SY_LocalGlobal_l50.median,497
791,SY_LocalGlobal_median_l100,"stationarity,distribution",SY_LocalGlobal_l100.median,498
792,SY_LocalGlobal_median_l500,"stationarity,distribution",SY_LocalGlobal_l500.median,499
793,SY_LocalGlobal_median_p01,"stationarity,distribution",SY_LocalGlobal_p01.median,500
794,SY_LocalGlobal_median_p05,"stationarity,distribution",SY_LocalGlobal_p05.median,501
795,SY_LocalGlobal_median_p1,"stationarity,distribution",SY_LocalGlobal_p1.median,502
796,SY_LocalGlobal_median_p5,"stationarity,distribution",SY_LocalGlobal_p5.median,503
797,SY_LocalGlobal_median_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.median,504
798,SY_LocalGlobal_median_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.median,505
799,SY_LocalGlobal_median_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.median,506
800,SY_LocalGlobal_median_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.median,507
801,SY_LocalGlobal_median_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.median,508
802,SY_LocalGlobal_iqr_l10,"stationarity,distribution",SY_LocalGlobal_l10.iqr,495
803,SY_LocalGlobal_iqr_l20,"stationarity,distribution",SY_LocalGlobal_l20.iqr,496
804,SY_LocalGlobal_iqr_l50,"stationarity,distribution",SY_LocalGlobal_l50.iqr,497
805,SY_LocalGlobal_iqr_l100,"stationarity,distribution",SY_LocalGlobal_l100.iqr,498
806,SY_LocalGlobal_iqr_l500,"stationarity,distribution",SY_LocalGlobal_l500.iqr,499
807,SY_LocalGlobal_iqr_p01,"stationarity,distribution",SY_LocalGlobal_p01.iqr,500
808,SY_LocalGlobal_iqr_p05,"stationarity,distribution",SY_LocalGlobal_p05.iqr,501
809,SY_LocalGlobal_iqr_p1,"stationarity,distribution",SY_LocalGlobal_p1.iqr,502
810,SY_LocalGlobal_iqr_p5,"stationarity,distribution",SY_LocalGlobal_p5.iqr,503
811,SY_LocalGlobal_iqr_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.iqr,504
812,SY_LocalGlobal_iqr_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.iqr,505
813,SY_LocalGlobal_iqr_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.iqr,506
814,SY_LocalGlobal_iqr_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.iqr,507
815,SY_LocalGlobal_iqr_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.iqr,508
816,SY_LocalGlobal_skewness_l10,"stationarity,distribution",SY_LocalGlobal_l10.skewness,495
817,SY_LocalGlobal_skewness_l20,"stationarity,distribution",SY_LocalGlobal_l20.skewness,496
818,SY_LocalGlobal_skewness_l50,"stationarity,distribution",SY_LocalGlobal_l50.skewness,497
819,SY_LocalGlobal_skewness_l100,"stationarity,distribution",SY_LocalGlobal_l100.skewness,498
820,SY_LocalGlobal_skewness_l500,"stationarity,distribution",SY_LocalGlobal_l500.skewness,499
821,SY_LocalGlobal_skewness_p01,"stationarity,distribution",SY_LocalGlobal_p01.skewness,500
822,SY_LocalGlobal_skewness_p05,"stationarity,distribution",SY_LocalGlobal_p05.skewness,501
823,SY_LocalGlobal_skewness_p1,"stationarity,distribution",SY_LocalGlobal_p1.skewness,502
824,SY_LocalGlobal_skewness_p5,"stationarity,distribution",SY_LocalGlobal_p5.skewness,503
825,SY_LocalGlobal_skewness_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.skewness,504
826,SY_LocalGlobal_skewness_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.skewness,505
827,SY_LocalGlobal_skewness_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.skewness,506
828,SY_LocalGlobal_skewness_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.skewness,507
829,SY_LocalGlobal_skewness_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.skewness,508
830,SY_LocalGlobal_kurtosis_l10,"stationarity,distribution",SY_LocalGlobal_l10.kurtosis,495
831,SY_LocalGlobal_kurtosis_l20,"stationarity,distribution",SY_LocalGlobal_l20.kurtosis,496
832,SY_LocalGlobal_kurtosis_l50,"stationarity,distribution",SY_LocalGlobal_l50.kurtosis,497
833,SY_LocalGlobal_kurtosis_l100,"stationarity,distribution",SY_LocalGlobal_l100.kurtosis,498
834,SY_LocalGlobal_kurtosis_l500,"stationarity,distribution",SY_LocalGlobal_l500.kurtosis,499
835,SY_LocalGlobal_kurtosis_p01,"stationarity,distribution",SY_LocalGlobal_p01.kurtosis,500
836,SY_LocalGlobal_kurtosis_p05,"stationarity,distribution",SY_LocalGlobal_p05.kurtosis,501
837,SY_LocalGlobal_kurtosis_p1,"stationarity,distribution",SY_LocalGlobal_p1.kurtosis,502
838,SY_LocalGlobal_kurtosis_p5,"stationarity,distribution",SY_LocalGlobal_p5.kurtosis,503
839,SY_LocalGlobal_kurtosis_unicg10,"stationarity,distribution",SY_LocalGlobal_unicg10.kurtosis,504
840,SY_LocalGlobal_kurtosis_unicg20,"stationarity,distribution",SY_LocalGlobal_unicg20.kurtosis,505
841,SY_LocalGlobal_kurtosis_unicg50,"stationarity,distribution",SY_LocalGlobal_unicg50.kurtosis,506
842,SY_LocalGlobal_kurtosis_unicg100,"stationarity,distribution",SY_LocalGlobal_unicg100.kurtosis,507
843,SY_LocalGlobal_kurtosis_unicg500,"stationarity,distribution",SY_LocalGlobal_unicg500.kurtosis,508
844,SY_LocalGlobal_AC1_l10,"stationarity",SY_LocalGlobal_l10.ac1,495
845,SY_LocalGlobal_AC1_l20,"stationarity",SY_LocalGlobal_l20.ac1,496
846,SY_LocalGlobal_AC1_l50,"stationarity",SY_LocalGlobal_l50.ac1,497
847,SY_LocalGlobal_AC1_l100,"stationarity",SY_LocalGlobal_l100.ac1,498
848,SY_LocalGlobal_AC1_l500,"stationarity",SY_LocalGlobal_l500.ac1,499
849,SY_LocalGlobal_AC1_p01,"stationarity",SY_LocalGlobal_p01.ac1,500
850,SY_LocalGlobal_AC1_p05,"stationarity",SY_LocalGlobal_p05.ac1,501
851,SY_LocalGlobal_AC1_p1,"stationarity",SY_LocalGlobal_p1.ac1,502
852,SY_LocalGlobal_AC1_p5,"stationarity",SY_LocalGlobal_p5.ac1,503
853,SY_LocalGlobal_AC1_unicg10,"stationarity",SY_LocalGlobal_unicg10.ac1,504
854,SY_LocalGlobal_AC1_unicg20,"stationarity",SY_LocalGlobal_unicg20.ac1,505
855,SY_LocalGlobal_AC1_unicg50,"stationarity",SY_LocalGlobal_unicg50.ac1,506
856,SY_LocalGlobal_AC1_unicg100,"stationarity",SY_LocalGlobal_unicg100.ac1,507
857,SY_LocalGlobal_AC1_unicg500,"stationarity",SY_LocalGlobal_unicg500.ac1,508
858,EN_wentropy_shannon,"entropy",EN_wentropy_shannon,509
859,EN_wentropy_logenent,"entropy",EN_wentropy_logenent,510
860,EN_rpde_3_1_H,"entropy",EN_rpde_3_1.H,511
861,EN_rpde_3_1_H_norm,"entropy",EN_rpde_3_1.H_norm,511
862,EN_rpde_3_1_propNonZero,"entropy",EN_rpde_3_1.propNonZero,511
863,EN_rpde_3_1_meanNonZero,"entropy",EN_rpde_3_1.meanNonZero,511
864,EN_rpde_3_1_maxRPD,"entropy",EN_rpde_3_1.maxRPD,511
865,EN_rpde_3_ac_H,"entropy",EN_rpde_3_ac.H,512
866,EN_rpde_3_ac_H_norm,"entropy",EN_rpde_3_ac.H_norm,512
867,EN_rpde_3_ac_propNonZero,"entropy",EN_rpde_3_ac.propNonZero,512
868,EN_rpde_3_ac_meanNonZero,"entropy",EN_rpde_3_ac.meanNonZero,512
869,EN_rpde_3_ac_maxRPD,"entropy",EN_rpde_3_ac.maxRPD,512
870,RM_entropy,"entropy",RM_entropy,513
871,EN_CID_CE2,"entropy",EN_CID.CE2,514
872,EN_CID_minCE1,"entropy,distribution",EN_CID.minCE1,514
873,EN_CID_minCE2,"entropy,distribution",EN_CID.minCE2,514
874,EN_CID_CE1_norm,"entropy",EN_CID.CE1_norm,514
875,EN_CID_CE2_norm,"entropy",EN_CID.CE2_norm,514
876,EN_DistributionEntropy_ks_001_0,"entropy",EN_DistributionEntropy_ks_001_0,515
877,EN_DistributionEntropy_ks_01_0,"entropy",EN_DistributionEntropy_ks_01_0,516
878,EN_DistributionEntropy_ks_05_0,"entropy",EN_DistributionEntropy_ks_05_0,517
879,EN_DistributionEntropy_ks_1_0,"entropy",EN_DistributionEntropy_ks_1_0,518
880,EN_DistributionEntropy_ks__001,"entropy",EN_DistributionEntropy_ks__001,519
881,EN_DistributionEntropy_ks__002,"entropy",EN_DistributionEntropy_ks__002,520
882,EN_DistributionEntropy_ks__005,"entropy",EN_DistributionEntropy_ks__005,521
883,EN_DistributionEntropy_ks__01,"entropy",EN_DistributionEntropy_ks__01,522
884,EN_DistributionEntropy_ks__02,"entropy",EN_DistributionEntropy_ks__02,523
885,EN_DistributionEntropy_ks__03,"entropy",EN_DistributionEntropy_ks__03,524
886,EN_DistributionEntropy_raw_ks__001,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__001,525
887,EN_DistributionEntropy_raw_ks__002,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__002,526
888,EN_DistributionEntropy_raw_ks__005,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__005,527
889,EN_DistributionEntropy_raw_ks__01,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__01,528
890,EN_DistributionEntropy_raw_ks__02,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__02,529
891,EN_DistributionEntropy_raw_ks__03,"entropy,raw,spreaddep",EN_DistributionEntropy_raw_ks__03,530
892,EN_DistributionEntropy_hist_5_0,"entropy",EN_DistributionEntropy_hist_5_0,531
893,EN_DistributionEntropy_hist_10_0,"entropy",EN_DistributionEntropy_hist_10_0,532
894,EN_DistributionEntropy_hist_20_0,"entropy",EN_DistributionEntropy_hist_20_0,533
895,EN_DistributionEntropy_hist_50_0,"entropy",EN_DistributionEntropy_hist_50_0,534
896,EN_DistributionEntropy_hist_auto_0,"entropy",EN_DistributionEntropy_hist_auto_0,535
897,EN_DistributionEntropy_hist_sqrt_0,"entropy",EN_DistributionEntropy_hist_sqrt_0,536
898,EN_DistributionEntropy_hist_fd_0,"entropy",EN_DistributionEntropy_hist_fd_0,537
899,EN_DistributionEntropy_hist_sturges_0,"entropy",EN_DistributionEntropy_hist_sturges_0,538
900,EN_DistributionEntropy_hist_10_001,"entropy",EN_DistributionEntropy_hist_10_001,539
901,EN_DistributionEntropy_hist_10_002,"entropy",EN_DistributionEntropy_hist_10_002,540
902,EN_DistributionEntropy_hist_10_005,"entropy",EN_DistributionEntropy_hist_10_005,541
903,EN_DistributionEntropy_hist_10_01,"entropy",EN_DistributionEntropy_hist_10_01,542
904,EN_DistributionEntropy_hist_10_02,"entropy",EN_DistributionEntropy_hist_10_02,543
905,EN_DistributionEntropy_hist_10_03,"entropy",EN_DistributionEntropy_hist_10_03,544
906,EN_DistributionEntropy_hist_auto_001,"entropy",EN_DistributionEntropy_hist_auto_001,545
907,EN_DistributionEntropy_hist_auto_002,"entropy",EN_DistributionEntropy_hist_auto_002,546
908,EN_DistributionEntropy_hist_auto_005,"entropy",EN_DistributionEntropy_hist_auto_005,547
909,EN_DistributionEntropy_hist_auto_01,"entropy",EN_DistributionEntropy_hist_auto_01,548
910,EN_DistributionEntropy_hist_auto_02,"entropy",EN_DistributionEntropy_hist_auto_02,549
911,EN_DistributionEntropy_hist_auto_03,"entropy",EN_DistributionEntropy_hist_auto_03,550
912,SB_BinaryStretch_lseq1,"binary",SB_BinaryStretch_lseq1,551
913,SB_BinaryStretch_lseq0,"binary",SB_BinaryStretch_lseq0,552
914,ApEn1_01,"entropy",ApEn1_01,553
915,ApEn1_02,"entropy",ApEn1_02,554
916,ApEn2_01,"entropy",ApEn2_01,555
917,ApEn2_02,"entropy",ApEn2_02,556
918,EN_PermEn_2_1_normPermEn,"entropy",EN_PermEn_2_1.normPermEn,557
919,EN_PermEn_3_1_normPermEn,"entropy",EN_PermEn_3_1.normPermEn,558
920,EN_PermEn_4_1_normPermEn,"entropy",EN_PermEn_4_1.normPermEn,559
921,EN_PermEn_5_1_normPermEn,"entropy",EN_PermEn_5_1.normPermEn,560
922,EN_PermEn_2_2_normPermEn,"entropy",EN_PermEn_2_2.normPermEn,561
923,EN_PermEn_3_2_normPermEn,"entropy",EN_PermEn_3_2.normPermEn,562
924,EN_PermEn_4_2_normPermEn,"entropy",EN_PermEn_4_2.normPermEn,563
925,EN_PermEn_5_2_normPermEn,"entropy",EN_PermEn_5_2.normPermEn,564
926,EN_PermEn_2_ac_normPermEn,"entropy",EN_PermEn_2_ac.normPermEn,565
927,EN_PermEn_3_ac_normPermEn,"entropy",EN_PermEn_3_ac.normPermEn,566
928,EN_PermEn_4_ac_normPermEn,"entropy",EN_PermEn_4_ac.normPermEn,567
929,EN_PermEn_5_ac_normPermEn,"entropy",EN_PermEn_5_ac.normPermEn,568
930,DN_Fit_mle_geometric,"distribution,fit",DN_Fit_mle_geometric,569
931,DN_FitKernelSmoothraw_numpeaks,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.npeaks,570
932,DN_FitKernelSmoothraw_entropy,"distribution,ksdensity,entropy,raw,spreaddep",DN_FitKernelSmoothraw.entropy,570
933,DN_FitKernelSmoothzscore_entropy,"distribution,ksdensity,entropy",DN_FitKernelSmoothzscore.entropy,571
934,DN_FitKernelSmoothraw_max,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.max,570
935,DN_FitKernelSmoothzscore_max,"distribution,ksdensity",DN_FitKernelSmoothzscore.max,571
936,DN_FitKernelSmoothraw_asym,"distribution,ksdensity,symmetry,raw",DN_FitKernelSmoothraw.asym,570
937,DN_FitKernelSmoothraw_plsym,"distribution,ksdensity,symmetry,raw",DN_FitKernelSmoothraw.plsym,570
938,DN_FitKernelSmooth_ncross_005,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_005,570
939,DN_FitKernelSmooth_ncross_01,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_010,570
940,DN_FitKernelSmooth_ncross_02,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_020,570
941,DN_FitKernelSmooth_ncross_03,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_030,570
942,DN_FitKernelSmooth_ncross_04,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_040,570
943,DN_FitKernelSmooth_ncross_05,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.numcross_050,570
944,DN_FitKernelSmooth_area_005,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_005,570
945,DN_FitKernelSmooth_area_01,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_010,570
946,DN_FitKernelSmooth_area_02,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_020,570
947,DN_FitKernelSmooth_area_03,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_030,570
948,DN_FitKernelSmooth_area_04,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_040,570
949,DN_FitKernelSmooth_area_05,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.area_050,570
950,DN_FitKernelSmooth_arcl_01,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.arclength_010,570
951,DN_FitKernelSmooth_arcl_05,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.arclength_050,570
952,DN_FitKernelSmooth_arcl_1,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.arclength_100,570
953,DN_FitKernelSmooth_arcl_2,"distribution,ksdensity,raw,spreaddep",DN_FitKernelSmoothraw.arclength_200,570
954,DK_timerev_1,"nonlinearity",DK_timerev_1,572
955,DK_timerev_2,"nonlinearity",DK_timerev_2,573
956,DK_timerev_3,"nonlinearity",DK_timerev_3,574
957,DK_timerev_4,"nonlinearity",DK_timerev_4,575
958,signtest,"hypothesistest,signtest",HT_HypothesisTest_signtest,576
959,runstest,"hypothesistest,randomness,raw",HT_HypothesisTest_runstest,577
960,lbqtest,"hypothesistest,randomness",HT_HypothesisTest_lbqtest,578
961,lbqtestraw,"hypothesistest,randomness,raw",HT_HypothesisTest_lbqtestraw,579
962,ztest,"hypothesistest",HT_HypothesisTest_ztest,580
963,signrank,"hypothesistest",HT_HypothesisTest_signrank,581
964,jbtest,"hypothesistest,raw",HT_HypothesisTest_jbtest,582
965,HT_DistributionTest_chi2norm5,"hypothesistest,distribution,raw",HT_DistributionTest_chi2norm5,583
966,HT_DistributionTest_chi2norm10,"hypothesistest,distribution,raw",HT_DistributionTest_chi2norm10,584
967,HT_DistributionTest_chi2norm25,"hypothesistest,distribution,raw",HT_DistributionTest_chi2norm25,585
968,HT_DistributionTest_chi2norm50,"hypothesistest,distribution,raw",HT_DistributionTest_chi2norm50,586
969,HT_DistributionTest_chi2norm100,"hypothesistest,distribution,raw",HT_DistributionTest_chi2norm100,587
970,HT_DistributionTest_chi2ev5,"hypothesistest,distribution,raw",HT_DistributionTest_chi2ev5,588
971,HT_DistributionTest_chi2ev10,"hypothesistest,distribution,raw",HT_DistributionTest_chi2ev10,589
972,HT_DistributionTest_chi2ev25,"hypothesistest,distribution,raw",HT_DistributionTest_chi2ev25,590
973,HT_DistributionTest_chi2ev50,"hypothesistest,distribution,raw",HT_DistributionTest_chi2ev50,591
974,HT_DistributionTest_chi2ev100,"hypothesistest,distribution,raw",HT_DistributionTest_chi2ev100,592
975,HT_DistributionTest_chi2uni5,"hypothesistest,distribution,raw",HT_DistributionTest_chi2uni5,593
976,HT_DistributionTest_chi2uni10,"hypothesistest,distribution,raw",HT_DistributionTest_chi2uni10,594
977,HT_DistributionTest_chi2uni25,"hypothesistest,distribution,raw",HT_DistributionTest_chi2uni25,595
978,HT_DistributionTest_chi2uni50,"hypothesistest,distribution,raw",HT_DistributionTest_chi2uni50,596
979,HT_DistributionTest_chi2uni100,"hypothesistest,distribution,raw",HT_DistributionTest_chi2uni100,597
980,HT_DistributionTest_chi2beta5,"hypothesistest,distribution,raw",HT_DistributionTest_chi2beta5,598
981,HT_DistributionTest_chi2beta10,"hypothesistest,distribution,raw",HT_DistributionTest_chi2beta10,599
982,HT_DistributionTest_chi2beta25,"hypothesistest,distribution,raw",HT_DistributionTest_chi2beta25,600
983,HT_DistributionTest_chi2beta50,"hypothesistest,distribution,raw",HT_DistributionTest_chi2beta50,601
984,HT_DistributionTest_chi2beta100,"hypothesistest,distribution,raw",HT_DistributionTest_chi2beta100,602
985,HT_DistributionTest_chi2rayl5,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2rayl5,603
986,HT_DistributionTest_chi2rayl10,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2rayl10,604
987,HT_DistributionTest_chi2rayl25,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2rayl25,605
988,HT_DistributionTest_chi2rayl50,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2rayl50,606
989,HT_DistributionTest_chi2rayl100,"hypothesistest,distribution,raw,posOnly",HT_DistributionTest_chi2rayl100,607
990,HT_DistributionTest_chi2exp5,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2exp5,608
991,HT_DistributionTest_chi2exp10,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2exp10,609
992,HT_DistributionTest_chi2exp25,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2exp25,610
993,HT_DistributionTest_chi2exp50,"hypothesistest,distribution,raw,posOnly",HT_DistributionTest_chi2exp50,611
994,HT_DistributionTest_chi2exp100,"hypothesistest,distribution,raw,posOnly",HT_DistributionTest_chi2exp100,612
995,HT_DistributionTest_chi2gam5,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2gam5,613
996,HT_DistributionTest_chi2gam10,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2gam10,614
997,HT_DistributionTest_chi2gam25,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2gam25,615
998,HT_DistributionTest_chi2gam50,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2gam50,616
999,HT_DistributionTest_chi2gam100,"hypothesistest,distribution,raw,locdep,posOnly",HT_DistributionTest_chi2gam100,617