search for: brecklandother

Displaying 1 result from an estimated 1 matches for "brecklandother".

2007 Aug 14
0
Comparing long species lists via Sorenson’s dissimilarity
...‘minimum’ and re-run. Would Bray-Curtis be a Percentage Similarity unlike the others? Here is an example of what happens when I run sorensons: #Compare Breckland with Other > a=table(breckland) > J=sum(breckland*other) > A=sum(breckland^2) > B=sum(other^2) > brecklandOther <- designdist(a,method=(A+B-2*J)/(A+B), terms = c("binary")) [1] 0.1750911 attr(,"call") designdist(x = a, method = (A + B - 2 * J)/(A + B), terms = c("binary")) attr(,"method") [1] "0.175091076893185 binary" I do not know why the...