Jaccard index#Jaccard index in binary classification confusion matrices

{{Short description|Measure of similarity and diversity between sets}}

{{More footnotes needed|date=March 2011}}

{{multiple image

| direction = vertical

| width = 200

| image1 = Intersection of sets A and B.svg

| image2 = Union of sets A and B.svg

| footer = Intersection and union of two sets A and B

}}

{{multiple image

| direction = vertical

| width = 300

| image1 = Intersection over Union - object detection bounding boxes.jpg

| image2 = Intersection over Union - visual equation.png

| image3 = Intersection over Union - poor, good and excellent score.png

| footer = Intersection over union as a similarity measure for object detection on images{{snd}} an important task in computer vision.

}}

The Jaccard index is a statistic used for gauging the similarity and diversity of sample sets.

It is defined in general taking the ratio of two sizes (areas or volumes), the intersection size divided by the union size, also called intersection over union (IoU).

It was developed by Grove Karl Gilbert in 1884 as his ratio of verification (v){{Cite journal | doi=10.1175/1520-0434(1996)011<0003:TFAASE>2.0.CO;2 | issn=1520-0434 | year=1996 | volume=11 | page=3 | title=The Finley Affair: A Signal Event in the History of Forecast Verification | last1=Murphy | first1=Allan H. | journal=Weather and Forecasting | issue=1 | bibcode=1996WtFor..11....3M | s2cid=54532560 | doi-access=free }} and now is often called the critical success index in meteorology.{{cite web|url=https://www.swpc.noaa.gov/sites/default/files/images/u30/Forecast%20Verification%20Glossary.pdf|title=Forecast Verification Glossary|website=noaa.gov|access-date=21 May 2023}} It was later developed independently by Paul Jaccard, originally giving the French name {{lang|fr|coefficient de communauté}} (coefficient of community),{{cite journal | first=Paul |last=Jaccard |author-link=Paul Jaccard |year=1901 |title=Étude comparative de la distribution florale dans une portion des Alpes et des Jura |lang=fr |journal=Bulletin de la Société vaudoise des sciences naturelles |url=https://www.e-periodica.ch/digbib/view?pid=bsv-002:1901:37::579#579 |volume=37 |issue=142 |pages=547–579 }}{{Cite journal |last=Jaccard |first=Paul |author-link=Paul Jaccard |title=The Distribution of the Flora in the Alpine Zone.1 |date=February 1912 |journal=New Phytologist |volume=11 |issue=2 |pages=37–50 |doi=10.1111/j.1469-8137.1912.tb05611.x |bibcode=1912NewPh..11...37J |s2cid=85574559 |issn=0028-646X}} and independently formulated again by T. Tanimoto. Thus, it is also called Tanimoto index or Tanimoto coefficient in some fields.

Overview

The Jaccard index measures similarity between finite non-empty sample sets and is defined as the size of the intersection divided by the size of the union of the sample sets:

: J(A, B) = \frac

A \cap B
A \cup B
= \frac
A \cap B
A| + |B| - |A \cap B
.

Note that by design, 0 \le J(A, B) \le 1. If the sets A and B have no elements in common, their intersection is empty, so |A \cap B|=0 and therefore J(A,B)=0. The other extreme is that the two sets are equal. In that case A\cap B=A\cup B=A=B, so then J(A,B)=1. The Jaccard index is widely used in computer science, ecology, genomics and other sciences where binary or binarized data are used. Both the exact solution and approximation methods are available for hypothesis testing with the Jaccard index.{{cite journal | vauthors = Chung NC, Miasojedow B, Startek M, Gambin A | title = Jaccard/Tanimoto similarity test and estimation methods for biological presence-absence data | journal = BMC Bioinformatics | volume = 20 | issue = Suppl 15 | pages = 644 | date = December 2019 | pmid = 31874610 | pmc = 6929325 | doi = 10.1186/s12859-019-3118-5 | arxiv=1903.11372 | doi-access = free }}

Jaccard similarity also applies to bags, i.e., multisets. This has a similar formula,{{cite book | vauthors = Leskovec J, Rajaraman A, Ullman J |title=Mining of Massive Datasets |publisher=Cambridge |year=2020 |isbn=9781108476348 }} and p. 76–77 in an [http://infolab.stanford.edu/~ullman/mmds/ch3.pdf earlier version]. but the symbols used represent bag intersection and bag sum (not union). The maximum value is 1/2.

: J(A, B) = \frac

A \cap B
A \uplus B
= \frac
A \cap B
A| + |B
.

The Jaccard distance, which measures dissimilarity between sample sets, is complementary to the Jaccard index and is obtained by subtracting the Jaccard index from 1 or, equivalently, by dividing the difference of the sizes of the union and the intersection of two sets by the size of the union:

: d_J(A, B) = 1 - J(A, B) = \frac

A \cup B| - |A \cap B
A \cup B
.

An alternative interpretation of the Jaccard distance is as the ratio of the size of the symmetric difference A \mathbin\triangle B = (A \cup B) - (A \cap B) to the union.

Jaccard distance is commonly used to calculate an {{nobr|n × n}} matrix for clustering and multidimensional scaling of n sample sets.

This distance is a metric on the collection of all finite sets.{{cite journal | vauthors = Kosub S | title = A note on the triangle inequality for the Jaccard distance | journal = Pattern Recognition Letters | date = April 2019 | volume = 120 | pages = 36–38 | doi = 10.1016/j.patrec.2018.12.007 | arxiv = 1612.02696 | bibcode = 2019PaReL.120...36K | s2cid = 564831 }}{{cite journal | vauthors = Lipkus AH | title=A proof of the triangle inequality for the Tanimoto distance |journal=Journal of Mathematical Chemistry |volume=26 |number=1–3 |year=1999 |pages=263–265 |doi=10.1023/A:1019154432472| s2cid=118263043 }}{{cite journal | vauthors = Levandowsky M, Winter D |title=Distance between sets |journal=Nature |volume=234 |number=5 |year=1971 |pages=34–35 |doi=10.1038/234034a0 |bibcode=1971Natur.234...34L |s2cid=4283015 }}

There is also a version of the Jaccard distance for measures, including probability measures. If \mu is a measure on a measurable space X, then we define the Jaccard index by

: J_\mu(A, B) = \frac{\mu(A \cap B)}{\mu(A \cup B)},

and the Jaccard distance by

: d_\mu(A, B) = 1 - J_\mu(A,B) = \frac{\mu(A \mathbin\triangle B)}{\mu(A \cup B)}.

Care must be taken if \mu(A \cup B) = 0 or \infty, since these formulas are not well defined in these cases.

The MinHash min-wise independent permutations locality sensitive hashing scheme may be used to efficiently compute an accurate estimate of the Jaccard similarity index of pairs of sets, where each set is represented by a constant-sized signature derived from the minimum values of a hash function.

Similarity of asymmetric binary attributes

Given two objects, A and B, each with n binary attributes, the Jaccard index is a useful measure of the overlap that A and B share with their attributes. Each attribute of A and B can either be 0 or 1. The total number of each combination of attributes for both A and B are specified as follows:

:M_{11} represents the total number of attributes where A and B both have a value of 1.

:M_{01} represents the total number of attributes where the attribute of A is 0 and the attribute of B is 1.

:M_{10} represents the total number of attributes where the attribute of A is 1 and the attribute of B is 0.

:M_{00} represents the total number of attributes where A and B both have a value of 0.

class="wikitable" style="float:right;font-size:150%;"
{{diagonal split header|B|A}}01
0

| M_{00}

| style="background:#ffcccc;border:solid;border-bottom:none;"|M_{10}

1

| style="background:#ffcccc;border:solid;border-right:none;"|M_{01}

| style="background:#66ff66;border:solid;border-top:none;border-left:none;"|M_{11}

Each attribute must fall into one of these four categories, meaning that

:M_{11} + M_{01} + M_{10} + M_{00} = n.

The Jaccard similarity index, J, is given as

:J = {M_{11} \over M_{01} + M_{10} + M_{11}}.

The Jaccard distance, dJ, is given as

:d_J = {M_{01} + M_{10} \over M_{01} + M_{10} + M_{11}} = 1 - J.

Statistical inference can be made based on the Jaccard similarity index, and consequently related metrics. Given two sample sets A and B with n attributes, a statistical test can be conducted to see if an overlap is statistically significant. The exact solution is available, although computation can be costly as n increases. Estimation methods are available either by approximating a multinomial distribution or by bootstrapping.

= Difference with the simple matching index (SMC) =

When used for binary attributes, the Jaccard index is very similar to the simple matching coefficient. The main difference is that the SMC has the term M_{00} in its numerator and denominator, whereas the Jaccard index does not. Thus, the SMC counts both mutual presences (when an attribute is present in both sets) and mutual absence (when an attribute is absent in both sets) as matches and compares it to the total number of attributes in the universe, whereas the Jaccard index only counts mutual presence as matches and compares it to the number of attributes that have been chosen by at least one of the two sets.

In market basket analysis, for example, the basket of two consumers who we wish to compare might only contain a small fraction of all the available products in the store, so the SMC will usually return very high values of similarities even when the baskets bear very little resemblance, thus making the Jaccard index a more appropriate measure of similarity in that context. For example, consider a supermarket with 1000 products and two customers. The basket of the first customer contains salt and pepper and the basket of the second contains salt and sugar. In this scenario, the similarity between the two baskets as measured by the Jaccard index would be 1/3, but the similarity becomes 0.998 using the SMC.

In other contexts, where 0 and 1 carry equivalent information (symmetry), the SMC is a better measure of similarity. For example, vectors of demographic variables stored in dummy variables, such as gender, would be better compared with the SMC than with the Jaccard index since the impact of gender on similarity should be equal, independently of whether male is defined as a 0 and female as a 1 or the other way around. However, when we have symmetric dummy variables, one could replicate the behaviour of the SMC by splitting the dummies into two binary attributes (in this case, male and female), thus transforming them into asymmetric attributes, allowing the use of the Jaccard index without introducing any bias. The SMC remains, however, more computationally efficient in the case of symmetric dummy variables since it does not require adding extra dimensions.

Weighted Jaccard similarity and distance

If \mathbf{x} = (x_1, x_2, \ldots, x_n) and \mathbf{y} = (y_1, y_2, \ldots, y_n) are two vectors with all real x_i, y_i \geq 0, then their Jaccard similarity index (also known then as Ruzicka similarity{{Citation needed|date=March 2025}}) is defined as

:J_\mathcal{W}(\mathbf{x}, \mathbf{y}) = \frac{\sum_i \min(x_i, y_i)}{\sum_i \max(x_i, y_i)},

and Jaccard distance (also known then as Soergel distance)

:d_{J\mathcal{W}}(\mathbf{x}, \mathbf{y}) = 1 - J_\mathcal{W}(\mathbf{x}, \mathbf{y}).

With even more generality, if f and g are two non-negative measurable functions on a measurable space X with measure \mu, then we can define

:J_\mathcal{W}(f, g) = \frac{\int\min(f, g) d\mu}{\int \max(f, g) d\mu},

where \max and \min are pointwise operators. Then Jaccard distance is

:d_{J\mathcal{W}}(f, g) = 1 - J_\mathcal{W}(f, g).

Then, for example, for two measurable sets A, B \subseteq X, we have J_\mu(A,B) = J(\chi_A, \chi_B), where \chi_A and \chi_B are the characteristic functions of the corresponding set.

Probability Jaccard similarity and distance

The weighted Jaccard similarity described above generalizes the Jaccard Index to positive vectors, where a set corresponds to a binary vector given by the indicator function, i.e. x_i \in \{0,1\}. However, it does not generalize the Jaccard Index to probability distributions, where a set corresponds to a uniform probability distribution, i.e.

:x_i = \begin{cases} \frac{1}

X
& i \in X \\ 0 & \text{otherwise} \end{cases}

It is always less if the sets differ in size. If |X| > |Y|, and x_i = \mathbf{1}_X(i)/|X|, y_i = \mathbf{1}_Y(i)/|Y| then

:J_\mathcal{W}(x,y) = \frac

X\cap Y
X\setminus Y| + |X
< J(X,Y).

[[File:Geometric interpretation of the Probability Jaccard Index as Simplices.png|thumb|upright=1.75|

The probability Jaccard index can be interpreted as intersections of simplices.]]

Instead, a generalization that is continuous between probability distributions and their corresponding support sets is

:J_\mathcal{P}(x,y) = \sum_{x_i\neq 0, y_i \neq 0} \frac{1}{\sum_{j} \max\left(\frac{x_j}{x_i}, \frac{y_j}{y_i}\right)}

which is called the "Probability" Jaccard.{{cite book | vauthors = Moulton R, Jiang Y |title=2018 IEEE International Conference on Data Mining (ICDM) |chapter=Maximally Consistent Sampling and the Jaccard Index of Probability Distributions |pages=347–356 |year=2018 |arxiv=1809.04052 |doi=10.1109/ICDM.2018.00050 |isbn=978-1-5386-9159-5 |s2cid=49746072 }} It has the following bounds against the Weighted Jaccard on probability vectors.

:J_\mathcal{W}(x,y) \leq J_\mathcal{P}(x,y) \leq \frac{2J_\mathcal{W}(x,y)}{1+J_\mathcal{W}(x,y)}

Here the upper bound is the (weighted) Sørensen–Dice coefficient.

The corresponding distance, 1 - J_\mathcal{P}(x,y), is a metric over probability distributions, and a pseudo-metric over non-negative vectors.

The Probability Jaccard Index has a geometric interpretation as the area of an intersection of simplices. Every point on a unit k-simplex corresponds to a probability distribution on k+1 elements, because the unit k-simplex is the set of points in k+1 dimensions that sum to 1. To derive the Probability Jaccard Index geometrically, represent a probability distribution as the unit simplex divided into sub simplices according to the mass of each item. If you overlay two distributions represented in this way on top of each other, and intersect the simplices corresponding to each item, the area that remains is equal to the Probability Jaccard Index of the distributions.

= Optimality of the Probability Jaccard Index =

[[File:Visual proof of the optimality of the Probability Jaccard Index on Three element distributions.png|thumb|upright=1.75|A visual proof of the optimality of the Probability Jaccard Index on three element distributions.

]]

Consider the problem of constructing random variables such that they collide with each other as much as possible. That is, if X\sim x and Y\sim y, we would like to construct X and Y to maximize \Pr[X=Y]. If we look at just two distributions x,y in isolation, the highest \Pr[X=Y] we can achieve is given by 1 - \text{TV}(x,y) where \text{TV} is the Total Variation distance. However, suppose we weren't just concerned with maximizing that particular pair, suppose we would like to maximize the collision probability of any arbitrary pair. One could construct an infinite number of random variables one for each distribution x, and seek to maximize \Pr[X=Y] for all pairs x,y. In a fairly strong sense described below, the Probability Jaccard Index is an optimal way to align these random variables.

For any sampling method G and discrete distributions x,y, if \Pr[G(x) = G(y)] > J_\mathcal{P}(x,y) then for some z where J_\mathcal{P}(x,z)>J_\mathcal{P}(x,y) and J_\mathcal{P}(y,z)>J_\mathcal{P}(x,y), either \Pr[G(x) = G(z)] < J_\mathcal{P}(x,z) or \Pr[G(y) = G(z)] < J_\mathcal{P}(y,z).

That is, no sampling method can achieve more collisions than J_\mathcal{P} on one pair without achieving fewer collisions than J_\mathcal{P} on another pair, where the reduced pair is more similar under J_\mathcal{P} than the increased pair. This theorem is true for the Jaccard Index of sets (if interpreted as uniform distributions) and the probability Jaccard, but not of the weighted Jaccard. (The theorem uses the word "sampling method" to describe a joint distribution over all distributions on a space, because it derives from the use of weighted minhashing algorithms that achieve this as their collision probability.)

This theorem has a visual proof on three element distributions using the simplex representation.

Tanimoto similarity and distance

Various forms of functions described as Tanimoto similarity and Tanimoto distance occur in the literature and on the Internet. Most of these are synonyms for Jaccard similarity and Jaccard distance, but some are mathematically different. Many sourcesFor example {{cite book | vauthors = Huihuan Q, Xinyu W, Yangsheng X |title=Intelligent Surveillance Systems |publisher=Springer |year=2011 |page=161 |isbn=978-94-007-1137-2 }} cite an IBM Technical Report{{cite journal | vauthors = Tanimoto TT |title=An Elementary Mathematical theory of Classification and Prediction |journal=Internal IBM Technical Report |date=17 Nov 1958 |issue=8? |volume=1957 }} as the seminal reference.

In "A Computer Program for Classifying Plants", published in October 1960,{{cite journal | vauthors = Rogers DJ, Tanimoto TT | title = A Computer Program for Classifying Plants | journal = Science | volume = 132 | issue = 3434 | pages = 1115–8 | date = October 1960 | pmid = 17790723 | doi = 10.1126/science.132.3434.1115 | bibcode = 1960Sci...132.1115R }} a method of classification based on a similarity ratio, and a derived distance function, is given. It seems that this is the most authoritative source for the meaning of the terms "Tanimoto similarity" and "Tanimoto Distance". The similarity ratio is equivalent to Jaccard similarity, but the distance function is not the same as Jaccard distance.

= Tanimoto's definitions of similarity and distance =

In that paper, a "similarity ratio" is given over bitmaps, where each bit of a fixed-size array represents the presence or absence of a characteristic in the plant being modelled. The definition of the ratio is the number of common bits, divided by the number of bits set (i.e. nonzero) in either sample.

Presented in mathematical terms, if samples X and Y are bitmaps, X_i is the ith bit of X, and \land , \lor are bitwise and, or operators respectively, then the similarity ratio T_s is

: T_s(X,Y) = \frac{\sum_i ( X_i \land Y_i)}{\sum_i ( X_i \lor Y_i)}

If each sample is modelled instead as a set of attributes, this value is equal to the Jaccard index of the two sets. Jaccard is not cited in the paper, and it seems likely that the authors were not aware of it.{{Citation needed|reason=says who?|date=March 2022}}

Tanimoto goes on to define a "distance" based on this ratio, defined for bitmaps with non-zero similarity:

: T_d(X,Y) = -\log_2 ( T_s(X,Y) )

This coefficient is, deliberately, not a distance metric. It is chosen to allow the possibility of two specimens, which are quite different from each other, to both be similar to a third. It is easy to construct an example which disproves the property of triangle inequality.

= Other definitions of Tanimoto distance =

Tanimoto distance is often referred to, erroneously, as a synonym for Jaccard distance 1-T_s. This function is a proper distance metric. "Tanimoto Distance" is often stated as being a proper distance metric, probably because of its confusion with Jaccard distance.{{Clarification needed|date=July 2024}}{{Citation needed|date=July 2024}}

If Jaccard or Tanimoto similarity is expressed over a bit vector, then it can be written as

: f(A,B) =\frac{ A \cdot B}{\|A\|^2 +\|B\|^2 - A \cdot B}

where the same calculation is expressed in terms of vector scalar product and magnitude. This representation relies on the fact that, for a bit vector (where the value of each dimension is either 0 or 1) then

:A \cdot B = \sum_i A_iB_i = \sum_i ( A_i \land B_i)

and

:\|A\|^2 = \sum_i A_i^2 = \sum_i A_i.

This is a potentially confusing representation, because the function as expressed over vectors is more general, unless its domain is explicitly restricted. Properties of T_s do not necessarily extend to f. In particular, the difference function 1-f does not preserve triangle inequality, and is not therefore a proper distance metric, whereas 1 - T_s is.

There is a real danger that the combination of "Tanimoto Distance" being defined using this formula, along with the statement "Tanimoto Distance is a proper distance metric" will lead to the false conclusion that the function 1-f is in fact a distance metric over vectors or multisets in general, whereas its use in similarity search or clustering algorithms may fail to produce correct results.

Lipkus uses a definition of Tanimoto similarity which is equivalent to f, and refers to Tanimoto distance as the function 1-f. It is, however, made clear within the paper that the context is restricted by the use of a (positive) weighting vector W such that, for any vector A being considered, A_i \in \{0,W_i\}. Under these circumstances, the function is a proper distance metric, and so a set of vectors governed by such a weighting vector forms a metric space under this function.

Jaccard index in binary classification confusion matrices

In confusion matrices employed for binary classification, the Jaccard index can be framed in the following formula:

:\text{Jaccard index} = \frac{TP}{TP + FP + FN}

where TP are the true positives, FP the false positives and FN the false negatives.{{Cite journal

| last1 = Aziz Taha

| first1 = Abdel

| year = 2015

| title = Metrics for evaluating 3D medical image segmentation: analysis, selection, and tool

| journal = BMC Medical Imaging

| volume = 15

| issue = 29

| pages = 1–28

| doi = 10.1186/s12880-015-0068-x

| pmid = 26263899

| pmc = 4533825

| doi-access = free}}

See also

References

{{reflist}}

Further reading

{{refbegin}}

  • {{cite book | vauthors = Tan PN, Steinbach M, Kumar V |title=Introduction to Data Mining |year=2005 |publisher=Pearson Addison Wesley |isbn=0-321-32136-7 }}

{{refend}}