Hi! I am trying to calculate Bray Curtis Dissimilarity in SAS by proc distance. I found an example on the next page:https://www.statisticshowto.datasciencecentral.com/bray-curtis-dissimilarity/ According to the Formula, the result must be 0.39 The same numbers I am getting in the R vegan. Proc distance producing different results. data c;
infile datalines;
input id $ A1 A2 A3 ;
datalines;
Fish_1 6 7 4
Fish_2 10 0 6
;
run;
proc distance data=c method=blwnm;
var ANOMINAL( A: ) ;
id id;
run; Results: id Fish_1 Fish_2 Fish_1 0 Fish_2 0,6 0 What am I doing wrong here? Thanks, Andrii
... View more