markvanderloo/stringdist

stringsimmatrix not containing the same values as stringsim

tamas-ferenci opened this issue · 2 comments

I might overlook something, but I don't understand how this is possible:

temp<-c("ca", "abc", "cba")
stringdist::stringsimmatrix(temp)

I.e., that the (1,3) element is not the same as (3,1). The latter seems to be correct as stringdist::stringsim(temp[1], temp[3])==stringdist::stringsim(temp[3], temp[1])==0.6666667.

confirmed: its a bug. Thanks for reporting

You're welcome, thanks for confirming it!