-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathS3_Rsquared_all.txt
More file actions
2212 lines (2212 loc) · 85.3 KB
/
S3_Rsquared_all.txt
File metadata and controls
2212 lines (2212 loc) · 85.3 KB
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
Statistics R_squared_coefficient
EMD *Similarity-ratio 0.984411187751176
Normalized-Vectors *Lengthd 0.980284365024882
K-Div *Lengthd 0.97714294780012
SimMM *Lengthd 0.976450448023083
Jefferey-Div *Lengthd 0.976226999965762
EMD *N2rrc 0.975719878202658
Lengthd *N2r 0.975707384628763
SimMM *EMD 0.975609097197229
EMD *N2r 0.975568643399115
Normalized-Vectors *EMD 0.975401176400285
Lengthd *Jensen-Shannon 0.97481307563338
Pearson-Coeff *Lengthd 0.974481083206906
D2z *Lengthd 0.974481083206897
Spearman *Lengthd 0.974281315245051
Harmonic-Mean *Lengthd 0.973399249278152
Lengthd *Similarity-ratio 0.972878222405328
EMD *N2rc 0.972369932407903
D2z *EMD 0.970855415149027
Pearson-Coeff *EMD 0.970855415149027
Lengthd *N2rc 0.969946098779806
Normalized-Vectors *Lengthd^2 0.96988482956637
Squared-Chord *Lengthd 0.969758104045186
Similarity-ratio 0.96974555427138
Similarity-ratio *EMD^2 0.969532224018125
K-Div *Lengthd^2 0.969214717276202
AFd *Similarity-ratio 0.969203143598004
Similarity-ratio *AFd^2 0.969110118817156
Jefferey-Div *Lengthd^2 0.968522875498756
Lengthd *D2-star 0.968472713275656
KL-Cond *Lengthd 0.967661784442646
RRE-k-r *Lengthd 0.967631616961626
Lengthd *N2rrc 0.967460291864911
Chi-Squared *Lengthd 0.967212335431623
Jensen-Shannon *Lengthd^2 0.96715351751949
EMD *D2-star 0.967112040217801
Lengthd *D2s 0.966663974529026
N2rrc *EMD^2 0.966578345465314
SimMM *Lengthd^2 0.966067737886954
Harmonic-Mean *Lengthd^2 0.965776373872572
N2r *Lengthd^2 0.965757216865447
Spearman *Lengthd^2 0.965665680420059
D2z *Lengthd^2 0.965216320363754
Pearson-Coeff *Lengthd^2 0.965216320363749
N2r *EMD^2 0.964488983353935
K-Div *EMD 0.963440819150104
EMD *Spearman 0.963425787622907
Jefferey-Div *EMD 0.962589491529521
Similarity-ratio *Lengthd^2 0.962576745788903
SimMM 0.962163211753357
Squared-Chord *Lengthd^2 0.962147514353915
Intersection *Lengthd 0.962075683084621
Lengthd *Kulczynski1 0.96184673831253
SimMM *AFd 0.961843042071994
SimMM *AFd^2 0.961762829914875
KL-Cond *Lengthd^2 0.96082071553823
RRE-k-r *Lengthd^2 0.960646637534216
EMD *Jensen-Shannon 0.960636511004292
EMD *D2s 0.960259243457469
Normalized-Vectors *EMD^2 0.960220770595372
N2rc *EMD^2 0.96016335204744
Chi-Squared *Lengthd^2 0.95956352092256
D2-star *Lengthd^2 0.959494470639432
N2rc *Lengthd^2 0.958858857127333
Harmonic-Mean *EMD 0.958851714303487
SimMM *EMD^2 0.957795514635983
D2z *EMD^2 0.957527821047964
Pearson-Coeff *EMD^2 0.957527821047959
N2rrc *Lengthd^2 0.95669428477421
D2s *Lengthd^2 0.956414849217251
Lengthd *Kulczynski2 0.955688710460544
KL-Cond *EMD 0.955518652452154
Squared-Chord *EMD 0.955238561305189
RRE-k-r *EMD 0.954467004718684
Kulczynski1 *Lengthd^2 0.954220784504348
D2-star *EMD^2 0.953486468721943
Chi-Squared *EMD 0.951503300497672
Intersection *Lengthd^2 0.950330901868999
K-Div *EMD^2 0.948837868858576
Jefferey-Div *EMD^2 0.948370526689119
Intersection *EMD 0.947821671525635
Normalized-Vectors 0.947670554466621
Normalized-Vectors *AFd 0.947212650600428
Intersection 0.946998104259613
Normalized-Vectors *AFd^2 0.94690024226161
Intersection *AFd 0.946756844271676
Intersection *AFd^2 0.946602778930601
Spearman *EMD^2 0.946576522196987
Jensen-Shannon *EMD^2 0.946151433816933
EMD *Kulczynski1 0.946069850864625
Kulczynski2 *Lengthd^2 0.945113011995056
Similarity-ratio^2 0.944266907351797
Harmonic-Mean *EMD^2 0.94416801996066
AFd *Similarity-ratio^2 0.944146660190426
AFd^2 *Similarity-ratio^2 0.944052943482455
Lengthd *N2rrc^2 0.943151542677411
D2s *EMD^2 0.942720853191488
Lengthd *Similarity-ratio^2 0.942221096675537
D2s 0.941944270842824
D2s *AFd 0.941663836217733
D2s *AFd^2 0.94154022355702
KL-Cond *EMD^2 0.941319139133736
Lengthd *N2r^2 0.941259393540964
EMD *Kulczynski2 0.940880358008085
Lengthd *Canberra 0.940424714690304
Manhattan *Lengthd 0.940179942774294
RRE-k-r *EMD^2 0.939742778564397
Squared-Chord *EMD^2 0.938811559563096
Similarity-ratio *N2rrc 0.938185811739444
N2rc 0.936381433496352
AFd *N2rc 0.935921199980356
Similarity-ratio *N2r 0.935673720782124
N2rc *AFd^2 0.9356311106693
Chi-Squared *EMD^2 0.935072152962384
Manhattan *Lengthd^2 0.933746925869568
Lengthd^2 *N2rrc^2 0.93370651198595
EMD *N2rrc^2 0.933367653574226
Canberra *Lengthd^2 0.933345760864589
Lengthd^2 *N2r^2 0.93281561855541
Spearman 0.931932599785216
EMD *Similarity-ratio^2 0.93188444789314
Kulczynski2 0.931687767851496
AFd *Kulczynski2 0.931471620743034
Pearson-Coeff 0.931455642451385
D2z 0.931455642451373
Spearman *AFd 0.931416041013953
Kulczynski2 *AFd^2 0.931322001029338
Spearman *AFd^2 0.931150557145839
Pearson-Coeff *AFd 0.931133936537854
D2z *AFd 0.93113393653785
Pearson-Coeff *AFd^2 0.930907326058523
D2z *AFd^2 0.930907326058519
Kulczynski1 *EMD^2 0.929418566982491
EMD *N2r^2 0.929214175000995
Lengthd^2 *Similarity-ratio^2 0.92853125468351
Normalized-Vectors *Similarity-ratio 0.928337290171356
Similarity-ratio *N2rc 0.927513565969498
D2-star 0.926863742786924
AFd *D2-star 0.926534280964956
Intersection *EMD^2 0.926480870573047
D2-star *AFd^2 0.926433148009431
SimMM *Similarity-ratio 0.925171724680805
EuclideanZ *Lengthd 0.92515798917243
EMD *Canberra 0.924726445704809
Pearson-Coeff *Similarity-ratio 0.923676752981624
D2z *Similarity-ratio 0.92367675298162
Manhattan *EMD 0.923557373322849
N2rrc 0.92328393631579
AFd *N2rrc 0.922461969039319
N2rrc *AFd^2 0.921959532540779
SimMM *N2rrc 0.921602773778752
Markov *Lengthd^2 0.921263753996356
Kulczynski2 *EMD^2 0.921174226578692
Lengthd *Normalized-Vectors^2 0.920420582298884
Lengthd *N2rc^2 0.919671519755619
Euclidean *Lengthd 0.919664199211666
N2r 0.919218675988209
SimMM *N2r 0.918685172603308
Squared-Chord 0.918652937881556
AFd *N2r 0.91830679420988
Squared-Chord *AFd 0.918085414986006
Squared-Chord *AFd^2 0.917776870787002
N2r *AFd^2 0.917718343613696
N2rrc^2 0.917688700920559
EMD^2 *N2rrc^2 0.917608478117589
AFd *N2rrc^2 0.917570667887373
AFd^2 *N2rrc^2 0.91747117586646
Normalized-Vectors *N2rrc 0.917109202029494
Similarity-ratio *D2-star 0.916206542797136
Lengthd *D2z^2 0.915278908180597
Lengthd *Pearson-Coeff^2 0.915278908180596
EuclideanZ *Lengthd^2 0.91519235266494
N2r *N2rrc 0.914998835313536
N2rc *N2rrc 0.914819775366328
EMD^2 *N2r^2 0.913928503739454
Jefferey-Div *Similarity-ratio 0.913874902753426
K-Div *Similarity-ratio 0.913852038267058
N2r *N2rc 0.913190447117952
Normalized-Vectors *N2r 0.91312362569273
EuclideanZ *EMD 0.912753827051136
Chi-Squared 0.912690218454396
Jaccard *Lengthd 0.91258209155719
Lengthd *Mismatch 0.91258209155719
Euclidean *Lengthd^2 0.912343374683346
Chi-Squared *AFd 0.912197110591107
Chi-Squared *AFd^2 0.911918014508791
D2z *N2rrc 0.911524384151226
Pearson-Coeff *N2rrc 0.911524384151226
Similarity-ratio *Jensen-Shannon 0.911024454805132
Normalized-Vectors^2 *Lengthd^2 0.910626137933663
Spearman *Similarity-ratio 0.910331934715505
Normalized-Vectors *N2rc 0.910154389865524
SimMM *N2rc 0.910056423195266
Lengthd^2 *N2rc^2 0.909877863816865
N2r^2 0.909818405931171
AFd *N2r^2 0.909699885199765
EMD *N2rc^2 0.909636636719597
AFd^2 *N2r^2 0.909590393473051
Normalized-Vectors^2 0.909527821070124
AFd *Normalized-Vectors^2 0.909454029827604
Normalized-Vectors^2 *AFd^2 0.909380872626049
Normalized-Vectors *SimMM 0.909282641610513
D2s *Similarity-ratio 0.908932891571404
EMD^2 *Similarity-ratio^2 0.908820913137132
EMD *Normalized-Vectors^2 0.908675175600465
Harmonic-Mean *Similarity-ratio 0.908593020606844
Canberra *EMD^2 0.908549415139076
Manhattan *EMD^2 0.908451416228864
Pearson-Coeff *N2r 0.908028141157345
D2z *N2r 0.908028141157341
Kulczynski1 0.907943469591503
N2rc^2 0.907853713221489
AFd *N2rc^2 0.907772371173569
AFd^2 *N2rc^2 0.907699819062446
AFd *Kulczynski1 0.907554888638522
Jaccard *Lengthd^2 0.907419825344223
Mismatch *Lengthd^2 0.907419825344223
Kulczynski1 *AFd^2 0.907331977431642
D2z^2 *Lengthd^2 0.906342877298884
Pearson-Coeff^2 *Lengthd^2 0.906342877298879
D2-star *N2rrc 0.906338167496153
D2z *SimMM 0.90632184018817
Pearson-Coeff *SimMM 0.90632184018817
Harmonic-Mean 0.905978436762644
Normalized-Vectors *D2z 0.905871930810638
Normalized-Vectors *Pearson-Coeff 0.905871930810632
D2z *N2rc 0.90580803328728
Pearson-Coeff *N2rc 0.905808033287279
Jensen-Shannon 0.905626757098073
Harmonic-Mean *AFd 0.905450977275505
Hellinger *Lengthd 0.905437015984108
Harmonic-Mean *AFd^2 0.905122793625217
AFd *Jensen-Shannon 0.905045526279545
Jefferey-Div 0.905018596089775
Squared-Chord *Similarity-ratio 0.904782075890846
EMD *D2z^2 0.904734313953113
EMD *Pearson-Coeff^2 0.904734313953112
Jensen-Shannon *AFd^2 0.904685929518964
Jefferey-Div *AFd 0.904369076335227
D2s *N2rrc 0.904105059744004
Jefferey-Div *AFd^2 0.903968780971981
K-Div 0.903802500257214
D2-star *N2r 0.903422323558359
Lengthd *SimMM^2 0.903312733846908
SimMM^2 0.903017998914646
K-Div *AFd 0.903009523822708
Euclidean *EMD 0.902986543542805
AFd *SimMM^2 0.902946776925952
SimMM^2 *AFd^2 0.90288780197691
K-Div *AFd^2 0.902552295271022
D2z^2 0.902085010757038
Pearson-Coeff *D2z 0.902085010757033
Pearson-Coeff^2 0.902085010757024
AFd *Pearson-Coeff^2 0.902026973230568
AFd *D2z^2 0.902026973230559
D2z^2 *AFd^2 0.901968464818737
Pearson-Coeff^2 *AFd^2 0.901968464818736
D2s *N2r 0.901282416970277
Spearman *N2rrc 0.901154328611791
KL-Cond *Similarity-ratio 0.900641117914225
Normalized-Vectors *D2-star 0.900120332352289
D2-star *N2rc 0.89975306778495
Chi-Squared *Similarity-ratio 0.899726407751152
SimMM *D2-star 0.899551709081289
RRE-k-r *Similarity-ratio 0.899367886935579
Jefferey-Div *N2rrc 0.899275508281159
K-Div *N2rrc 0.898746530611085
Jensen-Shannon *N2rrc 0.8974040582779
Lengthd *Jefferey-Div^2 0.897402806051435
EMD *Jaccard 0.897291298500669
EMD *Mismatch 0.897291298500669
Spearman *N2r 0.897256664637379
Lengthd *K-Div^2 0.897208489731454
Lengthd *D2-star^2 0.897061017804879
Pearson-Coeff *D2-star 0.89664211763312
D2z *D2-star 0.896642117633112
Harmonic-Mean *N2rrc 0.895774970399399
Jefferey-Div *N2rc 0.895636361608857
D2s *N2rc 0.895538933093187
KL-Cond 0.895516572685112
Jefferey-Div *SimMM 0.89542471935439
K-Div *SimMM 0.895406979308827
K-Div *N2rc 0.895348409367658
RRE-k-r 0.895314125403006
KL-Cond *AFd 0.895031121349896
Hellinger *Lengthd^2 0.895028518490997
Normalized-Vectors *D2s 0.894960838526566
Squared-Chord *N2rrc 0.89495284337188
RRE-k-r *AFd 0.894842885479528
KL-Cond *AFd^2 0.894796964062326
RRE-k-r *AFd^2 0.894617193339105
Spearman *N2rc 0.894196733837585
EuclideanZ 0.893676573480186
EuclideanZ *AFd 0.893582324194097
Jefferey-Div *N2r 0.893535037830461
EuclideanZ *AFd^2 0.893506949845566
Jensen-Shannon *N2rc 0.893408090887484
EuclideanZ *EMD^2 0.893389640067777
Normalized-Vectors *Jefferey-Div 0.893282804222657
Normalized-Vectors *Spearman 0.893132140663237
EMD^2 *N2rc^2 0.892992913920683
Normalized-Vectors *K-Div 0.892937543995988
K-Div *N2r 0.89287333896079
SimMM^2 *Lengthd^2 0.892680626330735
SimMM *Jensen-Shannon 0.89263831092084
Hellinger *EMD 0.892532798078607
Kulczynski1 *Similarity-ratio 0.892362534629477
Pearson-Coeff *D2s 0.892293279410499
D2z *D2s 0.892293279410495
Jensen-Shannon *N2r 0.89188352899557
EMD *SimMM^2 0.891746879008837
Harmonic-Mean *N2rc 0.89148951668822
Intersection *Similarity-ratio 0.891478740554607
SimMM *Spearman 0.891475324326381
Lengthd *Jensen-Shannon^2 0.89146019423321
Hellinger 0.891324830490945
SimMM *D2s 0.891302635605009
Hellinger *AFd 0.891212290514734
Normalized-Vectors^2 *EMD^2 0.891149571916553
Hellinger *AFd^2 0.891141045209929
Normalized-Vectors *Jensen-Shannon 0.8910868202928
Canberra 0.891071453084152
Intersection *N2rrc 0.890917319734269
AFd *Canberra 0.890858353915992
Canberra *AFd^2 0.890731164451092
Harmonic-Mean *N2r 0.890435482812738
Jefferey-Div *D2z 0.890368696928145
Jefferey-Div *Pearson-Coeff 0.89036869692814
Chi-Squared *N2rrc 0.89028635745379
Harmonic-Mean *SimMM 0.890268856329294
Squared-Chord *N2r 0.890213905874827
D2z *Spearman 0.890191768750973
Pearson-Coeff *Spearman 0.890191768750973
Markov *EMD^2 0.890185350370505
K-Div *D2z 0.889929640201883
K-Div *Pearson-Coeff 0.889929640201883
Jefferey-Div^2 *Lengthd^2 0.889830679638508
K-Div^2 *Lengthd^2 0.889695717665058
Normalized-Vectors *Harmonic-Mean 0.889198557332832
Squared-Chord *N2rc 0.889083118387742
D2z^2 *EMD^2 0.888700349825314
Pearson-Coeff^2 *EMD^2 0.888700349825313
KL-Cond *N2rrc 0.888552854418582
Markov *Lengthd 0.888424489972242
D2z *Jensen-Shannon 0.888362992335561
Pearson-Coeff *Jensen-Shannon 0.888362992335552
Lengthd^2 *D2-star^2 0.888350067255058
EMD *D2-star^2 0.888112892368491
Intersection *N2r 0.888096493114502
D2-star^2 0.887828060408758
AFd *D2-star^2 0.887803099561758
AFd^2 *D2-star^2 0.88778142087632
RRE-k-r *N2rrc 0.887361841214045
Normalized-Vectors *Squared-Chord 0.887009796972306
Harmonic-Mean *Pearson-Coeff 0.886628912415409
Harmonic-Mean *D2z 0.886628912415405
Lengthd *Harmonic-Mean^2 0.886448179613122
Euclidean *EMD^2 0.886136398131141
Squared-Chord *SimMM 0.885981393703682
Lengthd *Spearman^2 0.885895874945777
Chi-Squared *N2r 0.885594676675684
Jefferey-Div *D2-star 0.884865371346178
Kulczynski2 *Similarity-ratio 0.884685357631032
EMD *Jefferey-Div^2 0.884596875490877
Chi-Squared *N2rc 0.884530906539977
Squared-Chord *D2z 0.884526687001707
Pearson-Coeff *Squared-Chord 0.884526687001703
D2s *D2-star 0.884433330499621
K-Div *D2-star 0.884381865448061
EMD *K-Div^2 0.884371439745351
KL-Cond *N2rc 0.884367277542217
Kulczynski1 *N2rrc 0.8840955890678
Spearman *D2-star 0.884047687645319
Similarity-ratio *N2rrc^2 0.883976501695426
Lengthd^2 *Jensen-Shannon^2 0.883817119368052
KL-Cond *N2r 0.883518105979769
RRE-k-r *N2rc 0.883206264795716
Jaccard *EMD^2 0.883143963295327
Mismatch *EMD^2 0.883143963295327
KL-Cond *SimMM 0.882843525956701
Jensen-Shannon *D2-star 0.882804003218307
Kulczynski2 *N2rrc 0.882770011500764
RRE-k-r *N2r 0.88246940307581
Chi-Squared *Normalized-Vectors 0.882369091796996
Normalized-Vectors *KL-Cond 0.882277175850397
N2rrc *Similarity-ratio^2 0.881976564137453
RRE-k-r *SimMM 0.88183393478559
Chi-Squared *SimMM 0.881318250469533
Normalized-Vectors *RRE-k-r 0.881284109726197
Jefferey-Div *D2s 0.881074840679174
Harmonic-Mean *D2-star 0.881021450085898
N2rrc *N2rrc^2 0.88071070855517
K-Div *D2s 0.880710354529159
Chi-Squared *Pearson-Coeff 0.880177091028005
Chi-Squared *D2z 0.880177091028002
N2r *Similarity-ratio^2 0.880167335168753
Similarity-ratio *N2r^2 0.880093551992408
Intersection *N2rc 0.879776386363321
Kulczynski1 *N2r 0.879773879324735
Kulczynski2 *N2r 0.879765328738704
Pearson-Coeff *KL-Cond 0.879754717477178
KL-Cond *D2z 0.879754717477174
EMD *Jensen-Shannon^2 0.87907510024353
D2s *Jensen-Shannon 0.878760867674886
RRE-k-r *D2z 0.878754122175486
Pearson-Coeff *RRE-k-r 0.878754122175481
Harmonic-Mean^2 *Lengthd^2 0.878751240136387
N2r *N2rrc^2 0.878595108171627
Squared-Chord *D2-star 0.87855175459126
Spearman *D2s 0.878424180805696
Normalized-Vectors *Intersection 0.878407663438081
Kulczynski1 *N2rc 0.878095118346854
D2s^2 0.87782552432503
AFd *D2s^2 0.877788088909568
D2s^2 *AFd^2 0.877751498151683
Lengthd *D2s^2 0.877459174775963
Spearman^2 *Lengthd^2 0.877384503698328
Manhattan 0.877280324156447
Manhattan *AFd 0.877090990836716
Intersection *D2z 0.876981776018271
Pearson-Coeff *Intersection 0.876981776018271
Manhattan *AFd^2 0.876968633176404
Harmonic-Mean *D2s 0.876779671032161
Jefferey-Div *Spearman 0.876661388046977
N2rrc *N2r^2 0.876230441305042
K-Div *Spearman 0.87615670762329
Normalized-Vectors *Kulczynski1 0.876121803893808
Spearman^2 0.876119029949338
AFd *Spearman^2 0.876070676832131
Spearman^2 *AFd^2 0.876026975649441
Similarity-ratio *Similarity-ratio^2 0.875997689704093
Lengthd *Squared-Chord^2 0.875351604021452
EMD *Spearman^2 0.874989310606808
Spearman *Jensen-Shannon 0.87458734955288
SimMM *Kulczynski1 0.8744834453791
EMD *Harmonic-Mean^2 0.874417688493657
Chi-Squared *D2-star 0.874195143578464
D2z *Kulczynski1 0.87414087976012
Pearson-Coeff *Kulczynski1 0.874140879760116
KL-Cond *D2-star 0.873831317093503
N2r *N2r^2 0.873587304089244
Squared-Chord *D2s 0.873098099174413
Lengthd *KL-Cond^2 0.873032952097564
Kulczynski2 *N2rc 0.873011689923669
Harmonic-Mean *Spearman 0.872804373579578
RRE-k-r *D2-star 0.872709105559248
SimMM^2 *EMD^2 0.872599908488286
Jefferey-Div^2 0.872552197140717
AFd *Jefferey-Div^2 0.87250022837492
Jefferey-Div^2 *AFd^2 0.872450738150084
Hellinger *EMD^2 0.872230320016425
EMD^2 *D2-star^2 0.872128566322048
N2rc *N2rrc^2 0.872020870582481
Jefferey-Div *K-Div 0.871768297112199
Normalized-Vectors *N2rrc^2 0.871755282566807
Intersection *SimMM 0.871721537942219
Normalized-Vectors *Kulczynski2 0.871539451311196
Jefferey-Div *Jensen-Shannon 0.870914066111684
K-Div^2 0.870888820092011
Canberra *Similarity-ratio 0.870845801086112
AFd *K-Div^2 0.870830133038625
K-Div^2 *AFd^2 0.870777713126278
Lengthd *RRE-k-r^2 0.870489051337953
D2z *N2rrc^2 0.870270623725663
Pearson-Coeff *N2rrc^2 0.870270623725658
D2z *Kulczynski2 0.870236365656412
Pearson-Coeff *Kulczynski2 0.870236365656394
K-Div *Jensen-Shannon 0.870161613848923
Squared-Chord *Spearman 0.870154431467581
KL-Cond *D2s 0.869994517456811
Intersection *D2-star 0.869939774673362
Jefferey-Div^2 *EMD^2 0.869666344239399
Harmonic-Mean *Jefferey-Div 0.869480041416184
Manhattan *Similarity-ratio 0.869477331126139
K-Div^2 *EMD^2 0.869383345676668
N2rc *Similarity-ratio^2 0.869283782923341
Jensen-Shannon^2 0.869237082783701
AFd *Jensen-Shannon^2 0.869189897567411
AFd^2 *Jensen-Shannon^2 0.869144495277387
Jefferey-Div *Squared-Chord 0.868921258975266
Chi-Squared *D2s 0.868885481102346
RRE-k-r *D2s 0.868838084812046
Harmonic-Mean *K-Div 0.868752997713481
N2rc *N2r^2 0.868512413004778
Lengthd^2 *D2s^2 0.868390893428
Normalized-Vectors *Similarity-ratio^2 0.868308257522567
K-Div *Squared-Chord 0.868300750084387
EMD *D2s^2 0.868246175395746
Kulczynski1 *D2-star 0.867929915204174
Harmonic-Mean *Jensen-Shannon 0.867772625985046
Normalized-Vectors *N2r^2 0.867615006257463
Squared-Chord^2 *Lengthd^2 0.867307404550311
D2z *Similarity-ratio^2 0.867282980700371
Pearson-Coeff *Similarity-ratio^2 0.867282980700371
Squared-Chord *Jensen-Shannon 0.867021072381329
SimMM *N2rrc^2 0.866949376128606
Lengthd *Chi-Squared^2 0.866566676485898
Pearson-Coeff *N2r^2 0.866378941779673
D2z *N2r^2 0.866378941779666
Harmonic-Mean^2 0.866284392142542
AFd *Harmonic-Mean^2 0.866240724542847
Harmonic-Mean^2 *AFd^2 0.866198340205307
KL-Cond *Spearman 0.865983144000758
SimMM *Kulczynski2 0.865957136248583
Chi-Squared *Spearman 0.865902264233859
KL-Cond^2 *Lengthd^2 0.865694853896992
Canberra *N2rrc 0.865606254550827
Harmonic-Mean *Squared-Chord 0.8653804119596
RRE-k-r *Spearman 0.864931427668388
Jefferey-Div *Intersection 0.864815856415581
K-Div *Intersection 0.864653167428772
EMD *Squared-Chord^2 0.864652638546395
D2-star *N2rrc^2 0.864467648604666
Chi-Squared *Jefferey-Div 0.86433324341186
EMD^2 *Jensen-Shannon^2 0.864242135321811
Chi-Squared *K-Div 0.863697203409513
Kulczynski2 *D2-star 0.863482101195141
Squared-Chord^2 0.863395822001281
AFd *Squared-Chord^2 0.863353824578433
Squared-Chord^2 *AFd^2 0.863315334049236
SimMM *N2r^2 0.863245137454577
RRE-k-r^2 *Lengthd^2 0.863124579652097
Jefferey-Div *KL-Cond 0.862972570799994
Manhattan *N2rrc 0.86273202003126
D2s *Kulczynski1 0.862597516072043
Chi-Squared *Jensen-Shannon 0.862471944600696
N2rrc *N2rc^2 0.862386071491828
Intersection *Jensen-Shannon 0.862256616438522
K-Div *KL-Cond 0.862151890953941
Canberra *N2r 0.862146207842088
Jefferey-Div *RRE-k-r 0.862111811054433
EMD *KL-Cond^2 0.861978438765231
Intersection *Spearman 0.86188421547133
Intersection *D2s 0.86171576554975
N2rrc *Normalized-Vectors^2 0.861446392880466
Similarity-ratio *N2rc^2 0.861426115379863
KL-Cond *Jensen-Shannon 0.861320908495702
K-Div *RRE-k-r 0.861269941484121
D2-star *N2r^2 0.860969055948728
EMD *EMD^2 0.860964762389293
N2r *N2rc^2 0.860931287774427
Chi-Squared *Harmonic-Mean 0.860863751073981
RRE-k-r *Jensen-Shannon 0.86046739222048
Harmonic-Mean *Intersection 0.860086254775083
Similarity-ratio *Normalized-Vectors^2 0.859894066641222
Spearman *Kulczynski1 0.859893907615857
Harmonic-Mean *KL-Cond 0.859877875797741
EMD *RRE-k-r^2 0.859795185255546
Harmonic-Mean^2 *EMD^2 0.859678343770862
N2rrc *Pearson-Coeff^2 0.859661733552696
N2rrc *D2z^2 0.85966173355269
N2r *Normalized-Vectors^2 0.85966102190415
D2-star *Similarity-ratio^2 0.859531899273308
SimMM *Similarity-ratio^2 0.859465164672099
Jefferey-Div *N2rrc^2 0.859264406768748
Canberra *N2rc 0.859198169799609
EMD^2 *Spearman^2 0.859098703509241
Chi-Squared *Squared-Chord 0.859098579172621
K-Div *N2rrc^2 0.859055686441266
Harmonic-Mean *RRE-k-r 0.859030783613291
Squared-Chord *KL-Cond 0.858870842916658
Manhattan *N2r 0.858756269893174
Jefferey-Div *Kulczynski1 0.858663766838282
Chi-Squared^2 *Lengthd^2 0.858623972746776
Similarity-ratio *D2z^2 0.858503232741723
Similarity-ratio *Pearson-Coeff^2 0.858503232741709
D2s *N2rrc^2 0.858229524171004
N2r *D2z^2 0.858034737539752
N2r *Pearson-Coeff^2 0.858034737539747
K-Div *Kulczynski1 0.858019610071219
Squared-Chord *RRE-k-r 0.857922645067609
Normalized-Vectors *Canberra 0.857540340805802
Manhattan *N2rc 0.85745719055053
Jefferey-Div *Kulczynski2 0.857367535002503
K-Div *Kulczynski2 0.85709109723693
Jensen-Shannon *N2rrc^2 0.85705872750601
Spearman *N2rrc^2 0.85693190452564
Jefferey-Div *Similarity-ratio^2 0.85683777662014
Kulczynski1 *Jensen-Shannon 0.856803647679263
K-Div *Similarity-ratio^2 0.856708652691771
Squared-Chord *Intersection 0.856360324508945
D2z *Canberra 0.85627110730661
Pearson-Coeff *Canberra 0.856271107306596
Euclidean 0.856253033401561
EMD *Chi-Squared^2 0.856190183480121
D2s *Kulczynski2 0.856173748253116
Euclidean *AFd 0.856058527055392
Euclidean *AFd^2 0.855941217228493
EuclideanZ *N2rrc 0.855796723816606
Spearman *Kulczynski2 0.855568214937901
Manhattan *Normalized-Vectors 0.855361647743782
Harmonic-Mean *Kulczynski1 0.855198072034486
Harmonic-Mean *N2rrc^2 0.855175829921159
Kulczynski2 *Jensen-Shannon 0.855026680904054
D2s *N2r^2 0.854943131841754
Chi-Squared^2 0.854770296252923
AFd *Chi-Squared^2 0.854734753573566
Jefferey-Div *N2r^2 0.85473422287424
EuclideanZ *Similarity-ratio 0.854709001317996
Chi-Squared^2 *AFd^2 0.854700779052706
SimMM *Canberra 0.85453446296752
Chi-Squared *KL-Cond 0.854480208367412
K-Div *N2r^2 0.854455101984144
Manhattan *D2z 0.854247392847259
Manhattan *Pearson-Coeff 0.85424739284725
Jensen-Shannon *Similarity-ratio^2 0.854102120217122
Markov *EMD 0.853923834470578
KL-Cond *Intersection 0.853656219041656
Chi-Squared *RRE-k-r 0.853581504819672
Manhattan *SimMM 0.853568047628599
Squared-Chord *Kulczynski1 0.853343431612551
Spearman *N2r^2 0.853307767842758
KL-Cond^2 0.853211990554094
AFd *KL-Cond^2 0.853186548617749
KL-Cond^2 *AFd^2 0.853163237207788
Lengthd *Kulczynski1^2 0.85316100710356
EuclideanZ *N2r 0.85313566902233
Harmonic-Mean *Kulczynski2 0.853035392798786
Intersection *RRE-k-r 0.852706339038999
Jensen-Shannon *N2r^2 0.852685120554841
N2rc *N2rc^2 0.85239843381898
KL-Cond *RRE-k-r 0.852341089269649
Normalized-Vectors *N2rc^2 0.852042933034384
Spearman *Similarity-ratio^2 0.852032201692121
Squared-Chord *N2rrc^2 0.851935236287684
Chi-Squared *Intersection 0.851867950488205
Harmonic-Mean *Similarity-ratio^2 0.851786358862542
N2rc *Normalized-Vectors^2 0.851469873559225
EMD^2 *D2s^2 0.851449452501204
RRE-k-r^2 0.851427324778476
AFd *RRE-k-r^2 0.851406458554164
RRE-k-r^2 *AFd^2 0.851386944876443
D2z *N2rc^2 0.851362166688755
Pearson-Coeff *N2rc^2 0.85136216668875
Harmonic-Mean *N2r^2 0.850932177885577
Normalized-Vectors *Normalized-Vectors^2 0.850642350759651
EMD^2 *Lengthd^2 0.850549524673593
N2rc *Pearson-Coeff^2 0.850313152389447
N2rc *D2z^2 0.850313152389432
D2z *Normalized-Vectors^2 0.850123351848424
Pearson-Coeff *Normalized-Vectors^2 0.850123351848419
Canberra *D2-star 0.849919780001927
Squared-Chord *Kulczynski2 0.849898959200476
D2s *Similarity-ratio^2 0.849872366268068
Squared-Chord^2 *EMD^2 0.849702324838749
Normalized-Vectors *Pearson-Coeff^2 0.849643792488359
Normalized-Vectors *D2z^2 0.849643792488356
KL-Cond *N2rrc^2 0.849382590511708
D2z *D2z^2 0.849204156376847
Pearson-Coeff *D2z^2 0.849204156376846
D2z *Pearson-Coeff^2 0.849204156376845
Pearson-Coeff *Pearson-Coeff^2 0.849204156376836
Chi-Squared *Kulczynski1 0.849074833371405
KL-Cond *Kulczynski1 0.84881813404551
RRE-k-r *N2rrc^2 0.848464695019222
Squared-Chord *N2r^2 0.848127551817108
RRE-k-r *Kulczynski1 0.847932914521605
Manhattan *D2-star 0.847900108420432
Chi-Squared *N2rrc^2 0.847873986934086
KL-Cond^2 *EMD^2 0.847739987495494
N2rrc *SimMM^2 0.847556534902352
EuclideanZ *N2rc 0.847380136831864
Squared-Chord *Similarity-ratio^2 0.847074534690588
KL-Cond *Kulczynski2 0.846787124533016
N2rrc *D2-star^2 0.846322964422331
Euclidean *Similarity-ratio 0.84629399291058
N2r *SimMM^2 0.845980738231666
Normalized-Vectors *EuclideanZ 0.845962089128234
RRE-k-r *Kulczynski2 0.84590093036559
RRE-k-r^2 *EMD^2 0.845610114199932
Intersection *Kulczynski1 0.845546123807019
Chi-Squared *Kulczynski2 0.845518527972891
Jaccard 0.845489741320128
Mismatch 0.845489741320128
Jaccard *AFd 0.845376311917158
AFd *Mismatch 0.845376311917158
KL-Cond *Similarity-ratio^2 0.845367635900095
Jaccard *AFd^2 0.845324523879402
Mismatch *AFd^2 0.845324523879402
Lengthd^2 *Kulczynski1^2 0.845304063876178
D2-star *N2rc^2 0.845270596861509
KL-Cond *N2r^2 0.845214535011591
SimMM *N2rc^2 0.845113634940114
Pearson-Coeff *EuclideanZ 0.844970659120821
D2z *EuclideanZ 0.84497065912081
N2r *D2-star^2 0.844925584241428
D2s *Canberra 0.844562682264705
RRE-k-r *N2r^2 0.844460002090355
RRE-k-r *Similarity-ratio^2 0.844262324285423
Chi-Squared *N2r^2 0.844182474717581
D2-star *Normalized-Vectors^2 0.843822248424219
Euclidean *N2rrc 0.843678318038604
EMD *Kulczynski1^2 0.843631186574799
Similarity-ratio *D2-star^2 0.843606006284084
SimMM *Normalized-Vectors^2 0.843474978952172
Kulczynski1^2 0.843391386388832
AFd *Kulczynski1^2 0.843365248286885
AFd^2 *Kulczynski1^2 0.84333895767191
D2-star *D2z^2 0.843289041732797
D2-star *Pearson-Coeff^2 0.843289041732795
Manhattan *D2s 0.843194589184909
Similarity-ratio *SimMM^2 0.84309029148833
SimMM *D2z^2 0.842750922054636
SimMM *Pearson-Coeff^2 0.842750922054635
Chi-Squared *Similarity-ratio^2 0.842661498218193
Jaccard *Similarity-ratio 0.842642039910216
Mismatch *Similarity-ratio 0.842642039910216
Hellinger *N2rrc 0.842614250086694
Spearman *Canberra 0.842528626732389
Lengthd *EMD^2 0.842184073520415
Kulczynski1 *N2rrc^2 0.842128793903145
Jefferey-Div *Canberra 0.841974976862016
Intersection^2 0.841716340913067
Chi-Squared^2 *EMD^2 0.841695772152373
AFd *Intersection^2 0.841681870656971
Intersection^2 *AFd^2 0.84164654349261
K-Div *Canberra 0.841377376752193
Jefferey-Div *N2rc^2 0.841264539008405
K-Div *N2rc^2 0.841141048813537
SimMM *EuclideanZ 0.841037915221536
Manhattan *Spearman 0.840460687055505
Hellinger *N2r 0.840361687241629
Canberra *Jensen-Shannon 0.840170277371742
Jefferey-Div *Normalized-Vectors^2 0.839821249976359
Intersection *N2rrc^2 0.839688603387525
K-Div *Normalized-Vectors^2 0.83965962485843
Kulczynski1 *Kulczynski2 0.839469311367526
Lengthd *Intersection^2 0.839322433956309
Euclidean *N2r 0.839247372758754
Jefferey-Div *D2z^2 0.839024621251418
Jefferey-Div *Pearson-Coeff^2 0.839024621251412
Jensen-Shannon *N2rc^2 0.839006316630722
Markov *SimMM 0.838875370743398
K-Div *D2z^2 0.838848205917727
K-Div *Pearson-Coeff^2 0.838848205917726
Kulczynski1 *N2r^2 0.838699240642648
Harmonic-Mean *Canberra 0.838616469608502
Euclidean *N2rc 0.838515787947422
D2s *N2rc^2 0.838496330373886
Manhattan *Jefferey-Div 0.838268295470449
Spearman *N2rc^2 0.837923546418945
EuclideanZ *D2-star 0.837747364470942
Hellinger *Similarity-ratio 0.837687802445143
N2rrc *Jefferey-Div^2 0.837664187412473
Jensen-Shannon *Normalized-Vectors^2 0.837598769374737
Similarity-ratio *Jefferey-Div^2 0.837572074572618
Manhattan *K-Div 0.837545020663179
Markov *Similarity-ratio 0.837319988731181
Similarity-ratio *K-Div^2 0.837129287599153
Harmonic-Mean *N2rc^2 0.837088019386668
Jaccard *N2rrc 0.837070662226163
Mismatch *N2rrc 0.837070662226163
N2rrc *K-Div^2 0.837062607005074
N2rc *D2-star^2 0.836937959672614
Intersection *N2r^2 0.836919427712429
Jensen-Shannon *D2z^2 0.836900110229483
Jensen-Shannon *Pearson-Coeff^2 0.836900110229478
Intersection *Kulczynski2 0.836861811588274
Spearman *Normalized-Vectors^2 0.836702482614069
Squared-Chord *Canberra 0.836646463938867
D2s *Normalized-Vectors^2 0.836627007516096
Manhattan *Jensen-Shannon 0.836614206629325
N2rc *SimMM^2 0.836530878887679
D2s *Pearson-Coeff^2 0.836463073127909
D2s *D2z^2 0.836463073127907
Spearman *Pearson-Coeff^2 0.836111647540935
Spearman *D2z^2 0.836111647540923
Kulczynski1 *Similarity-ratio^2 0.836069013766142
Normalized-Vectors *D2-star^2 0.836056653791523
Pearson-Coeff *D2-star^2 0.835978707906354
D2z *D2-star^2 0.835978707906341
Markov *Similarity-ratio^2 0.835854750550721
Harmonic-Mean *Normalized-Vectors^2 0.835711899270143
N2r *Jefferey-Div^2 0.835647730485787
Euclidean *Normalized-Vectors 0.835538498496409
Normalized-Vectors *SimMM^2 0.835534782795545
D2z *SimMM^2 0.835241930326944
Pearson-Coeff *SimMM^2 0.835241930326939
Manhattan *Harmonic-Mean 0.835179600783514
Harmonic-Mean *Pearson-Coeff^2 0.835092756860623
Harmonic-Mean *D2z^2 0.835092756860609
N2r *K-Div^2 0.834987942218503
Kulczynski2 *N2rrc^2 0.834932016849485
N2r^2 *N2rrc^2 0.834896396336317
Euclidean *D2z 0.834845283040013
Euclidean *Pearson-Coeff 0.834845283040008
Manhattan *Squared-Chord 0.833925858311601
Euclidean *SimMM 0.833733699986116
Jaccard *N2r 0.833631638537582
Mismatch *N2r 0.833631638537582
N2rrc *Jensen-Shannon^2 0.833573345307517
Squared-Chord *N2rc^2 0.833487804894608
N2rrc *Spearman^2 0.833080968814997
Similarity-ratio *Jensen-Shannon^2 0.832947004426449
Hellinger *N2rc 0.832763689827257
N2rrc *D2s^2 0.832748312330257
Jaccard *N2rc 0.832716897727266
Mismatch *N2rc 0.832716897727266
Chi-Squared *Canberra 0.832644050898741
KL-Cond *Canberra 0.832616697624023
Squared-Chord *Normalized-Vectors^2 0.832233758682422
Kulczynski2 *N2r^2 0.832138032159726
Kulczynski2^2 0.831887175093877
AFd *Kulczynski2^2 0.831857654795825
N2r *Spearman^2 0.831832516482482
AFd^2 *Kulczynski2^2 0.831827278242175
RRE-k-r *Canberra 0.831806123082348
N2r *Jensen-Shannon^2 0.831726258700831
Jefferey-Div *EuclideanZ 0.831708465028081
Squared-Chord *D2z^2 0.831686994896025
Squared-Chord *Pearson-Coeff^2 0.831686994896024
Lengthd *Kulczynski2^2 0.831645824044765
KL-Cond *N2rc^2 0.831643357995095
N2r *D2s^2 0.831543073663083
Hellinger *Normalized-Vectors 0.831198650731542
K-Div *EuclideanZ 0.83113056045543
Normalized-Vectors *Jaccard 0.830969494522459
Normalized-Vectors *Mismatch 0.830969494522459
EuclideanZ *D2s 0.830962470793886
RRE-k-r *N2rc^2 0.830834984130505
Hellinger *Pearson-Coeff 0.830681055885555
Hellinger *D2z 0.830681055885551
EuclideanZ *Spearman 0.830674147571598
Similarity-ratio *Spearman^2 0.830479317298545
EMD *Intersection^2 0.83040662826075
Intersection^2 *Lengthd^2 0.830273964021162
KL-Cond *Normalized-Vectors^2 0.830207915892087
N2rrc *Harmonic-Mean^2 0.830100661020484
Pearson-Coeff *Jaccard 0.830051799623814
Pearson-Coeff *Mismatch 0.830051799623814
D2z *Jaccard 0.830051799623807
D2z *Mismatch 0.830051799623807
Similarity-ratio^2 *N2rrc^2 0.829906194172153
Markov^2 *Lengthd^2 0.829867310604598
N2rc *Jefferey-Div^2 0.829845182893585
Manhattan *Chi-Squared 0.829776752776919
KL-Cond *D2z^2 0.82973978310061
KL-Cond *Pearson-Coeff^2 0.8297397831006
EuclideanZ *Jensen-Shannon 0.829655096410585
Intersection *Similarity-ratio^2 0.829640462025455
EMD^2 *Kulczynski1^2 0.829609990205593
Chi-Squared *N2rc^2 0.829586334362969
RRE-k-r *Normalized-Vectors^2 0.829450840608658
SimMM *Jaccard 0.829418460545193
SimMM *Mismatch 0.829418460545193
N2rc *K-Div^2 0.829397544063807
Manhattan *KL-Cond 0.829223965695707
Similarity-ratio *Harmonic-Mean^2 0.829059885484095
RRE-k-r *D2z^2 0.829031305871184
RRE-k-r *Pearson-Coeff^2 0.829031305871182
Normalized-Vectors *Jefferey-Div^2 0.828821256168634
SimMM *D2-star^2 0.828707934813955
D2z *Jefferey-Div^2 0.828566971541101
Pearson-Coeff *Jefferey-Div^2 0.828566971541093
Manhattan *RRE-k-r 0.828493079355912
D2-star *SimMM^2 0.828418721625802
Chi-Squared *Normalized-Vectors^2 0.828389260464521
N2r *Harmonic-Mean^2 0.82838745056388
Normalized-Vectors *K-Div^2 0.828330821826913
Pearson-Coeff *K-Div^2 0.828053869485509
D2z *K-Div^2 0.828053869485501
Chi-Squared *D2z^2 0.827980967177705
Chi-Squared *Pearson-Coeff^2 0.827980967177692
Harmonic-Mean *EuclideanZ 0.827897501662945
Intersection *Canberra 0.827680504202918
Euclidean *D2-star 0.827651678365868
Similarity-ratio^2 *N2r^2 0.827527534415746
Similarity-ratio *D2s^2 0.827498032928254
D2-star *D2-star^2 0.827476736314813
SimMM *SimMM^2 0.827320166405014
Canberra *Kulczynski1 0.827230986199397
Manhattan *Intersection 0.826176587537227
Jefferey-Div *SimMM^2 0.825785540503129
K-Div *SimMM^2 0.825690399131545
N2rc *Jensen-Shannon^2 0.825657619424489
Kulczynski2 *Similarity-ratio^2 0.825626177584271
Canberra *N2rrc^2 0.825579510272211
Jefferey-Div *D2-star^2 0.825490564068079
K-Div *D2-star^2 0.825270478237481
Squared-Chord *EuclideanZ 0.825083605390965
Normalized-Vectors *Jensen-Shannon^2 0.824741742943176
Pearson-Coeff *Jensen-Shannon^2 0.824560774608348
D2z *Jensen-Shannon^2 0.824560774608345
Manhattan *Kulczynski1 0.824420964092662
Hellinger *SimMM 0.824256127730981
N2rrc *Squared-Chord^2 0.824208258647172
Manhattan *N2rrc^2 0.824167069375139
Kulczynski1 *N2rc^2 0.824028878707545
N2rc *Spearman^2 0.824019172216401
Jaccard *D2-star 0.823558817178207
Mismatch *D2-star 0.823558817178207
Normalized-Vectors *Spearman^2 0.823532066432981
Jensen-Shannon *SimMM^2 0.823519814053874
Jensen-Shannon *D2-star^2 0.823404411914423
SimMM *Jefferey-Div^2 0.823365324281113
D2z *Spearman^2 0.823355827526477
Pearson-Coeff *Spearman^2 0.823355827526477
N2rc *D2s^2 0.823221741933907
Lengthd^2 *Kulczynski2^2 0.823076980979936
EMD *Kulczynski2^2 0.823064736716234
SimMM *K-Div^2 0.823059514580439
Hellinger *D2-star 0.82302927546189
N2r *Squared-Chord^2 0.822943205757757
Kulczynski1 *Normalized-Vectors^2 0.822899898883727
Canberra *N2r^2 0.822887807403443
Kulczynski1 *Pearson-Coeff^2 0.822644621899617
Kulczynski1 *D2z^2 0.822644621899615
EMD^2 0.822564057889482
Spearman *D2-star^2 0.822501155599667
EMD^2 *AFd^2 0.822436568893474
Canberra *Kulczynski2 0.822433661810469
Euclidean *D2s 0.822426213752356
AFd *EMD^2 0.822346102817488
Pearson-Coeff *D2s^2 0.82234603007516
D2z *D2s^2 0.822346030075157
D2-star *Jefferey-Div^2 0.822341174355106
N2rc *Harmonic-Mean^2 0.822124097082382
Normalized-Vectors *D2s^2 0.822123334469476
Spearman *SimMM^2 0.821894434019716
D2-star *K-Div^2 0.821789949771303
Similarity-ratio *Squared-Chord^2 0.82178357622354
KL-Cond *EuclideanZ 0.82166751073098
Harmonic-Mean *D2-star^2 0.821629890873457
Harmonic-Mean *SimMM^2 0.821604611119331
D2s *D2-star^2 0.821449697167551
Normalized-Vectors *Harmonic-Mean^2 0.821295323831179
Manhattan *N2r^2 0.821204867902441
D2z *Harmonic-Mean^2 0.821170388770873
Pearson-Coeff *Harmonic-Mean^2 0.821170388770868
Chi-Squared *EuclideanZ 0.820940860062631
D2s *SimMM^2 0.820889207815494
RRE-k-r *EuclideanZ 0.820697231955211
Euclidean *Spearman 0.820600905655453
Manhattan *Kulczynski2 0.820566236160092
Markov *D2s 0.820046974192412
Jaccard *D2s 0.819752386369939
D2s *Mismatch 0.819752386369939
N2rrc *KL-Cond^2 0.819450961122873
Intersection *N2rc^2 0.819440432656602
SimMM *Jensen-Shannon^2 0.819107846016238
N2rc^2 *N2rrc^2 0.819058499330336
Hellinger *Jefferey-Div 0.818764815489019
Hellinger *K-Div 0.818352557981094
D2-star *Jensen-Shannon^2 0.818341265308151
Intersection *D2z^2 0.818245071959548
Intersection *Pearson-Coeff^2 0.818245071959543
Intersection *Normalized-Vectors^2 0.818173346342588
Markov *Intersection 0.818099498619994
Similarity-ratio *KL-Cond^2 0.817972750893951
Squared-Chord *D2-star^2 0.817965687376882
N2rrc *RRE-k-r^2 0.81794779414233
D2z^2 *N2rrc^2 0.817918000447305
Pearson-Coeff^2 *N2rrc^2 0.817918000447303
Canberra *Similarity-ratio^2 0.817873215252337
Squared-Chord *SimMM^2 0.817854797226099
N2r *KL-Cond^2 0.817846116975242
Normalized-Vectors^2 *N2rrc^2 0.817663246030742
Jefferey-Div *Jefferey-Div^2 0.817451433537652
Euclidean *Jefferey-Div 0.8174321031784
Spearman *Jaccard 0.817245435824383
Spearman *Mismatch 0.817245435824383
K-Div *Jefferey-Div^2 0.817128591758896
Lengthd *Canberra^2 0.817096041261604
D2-star *Spearman^2 0.816931711668791
N2r^2 *N2rc^2 0.816893881818476
N2rrc *Chi-Squared^2 0.816863338465068
Manhattan *Similarity-ratio^2 0.816829404832754
Jefferey-Div *K-Div^2 0.816781516919016
D2s *Jefferey-Div^2 0.816750915127312
SimMM *Spearman^2 0.816671240540588
Hellinger *Jensen-Shannon 0.81661773892368
Euclidean *K-Div 0.816538284543327
Hellinger *Spearman 0.816499665682578
N2r *RRE-k-r^2 0.816450294786881
K-Div *K-Div^2 0.816409596056996
KL-Cond *SimMM^2 0.816388617519641
KL-Cond *D2-star^2 0.816387452224968
Spearman *Jefferey-Div^2 0.816277044062628
Similarity-ratio *RRE-k-r^2 0.816274508970991
D2s *K-Div^2 0.816257509117391
D2z^2 *N2r^2 0.815994927816292
Pearson-Coeff^2 *N2r^2 0.815994927816291
Euclidean *Jensen-Shannon 0.81585065352067
N2rc *Squared-Chord^2 0.815832574963835
Spearman *K-Div^2 0.815755972530326
Normalized-Vectors^2 *N2r^2 0.815714333346789
N2r *Chi-Squared^2 0.81569828736797
RRE-k-r *D2-star^2 0.815647026967802
Jensen-Shannon *Jefferey-Div^2 0.81563550643052
Kulczynski2 *N2rc^2 0.815593156644857
SimMM *Harmonic-Mean^2 0.815538834668221
RRE-k-r *SimMM^2 0.815533711829205
Hellinger *D2s 0.815396706969863
Normalized-Vectors *Squared-Chord^2 0.815343915376849
D2z *Squared-Chord^2 0.81521223455843
Pearson-Coeff *Squared-Chord^2 0.815212234558425
EuclideanZ *Kulczynski1 0.815057775048824
Intersection^2 *EMD^2 0.815048699348796
Lengthd *Manhattan^2 0.815029979009078
Jensen-Shannon *K-Div^2 0.814989411143937