NAME
Set::Similarity::Overlap - Overlap coefficent for sets
SYNOPSIS
use Set::Similarity::Overlap;
my $overlap = Set::Similarity::Overlap->new;
my $similarity = $overlap->similarity('Photographer','Fotograf');
DESCRIPTION
Overlap coefficient
( A intersect B ) / min(A,B)
METHODS
Set::Similarity::Overlap inherits all methods from Set::Similarity and implements the following new ones.
from_sets
my $similarity = $object->from_sets(['a'],['b']);
This method expects two arrayrefs of strings as parameters. The parameters are not checked, thus can lead to funny results or uncatched divisions by zero.
If you want to use this method directly, you should take care that the elements are unique. Also you should catch the situation where one of the arrayrefs is empty (similarity is 0), or both are empty (similarity is 1).
SOURCE REPOSITORY
http://github.com/wollmers/Set-Similarity
AUTHOR
Helmut Wollmersdorfer, <helmut.wollmersdorfer@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2013-2014 by Helmut Wollmersdorfer
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.