Hello,
I was looking at Jaccard.java to try to figure out how to use it, and it looks like the formula on line 96:
dist = 1.0 - 2 * a / (2 * a + b + c);
is actually for the Dice coefficient? I think the same code might be in use in splitstree6, since it gives the same results for Dice and Jaccard.
Hello,
I was looking at Jaccard.java to try to figure out how to use it, and it looks like the formula on line 96:
is actually for the Dice coefficient? I think the same code might be in use in splitstree6, since it gives the same results for Dice and Jaccard.