Introduction

Introduction to the philentropy Package

Comparison is a fundamental method of scientific research leading to more general insights about the processes that generate similarity or dissimilarity. In statistical terms comparisons between probability functions are performed to infer connections, correlations, or relationships between samples. The philentropy package implements optimized distance and similarity measures for comparing probability functions. These comparisons between probability functions have their foundations in a broad range of scientific disciplines from mathematics to ecology. The aim of this package is to provide a base framework for clustering, classification, statistical inference, goodness-of-fit, non-parametric statistics, information theory, and machine learning tasks that are based on comparing univariate or multivariate probability functions.

Applying the method of comparison in statistics often means computing distances between probability functions. In this context Sung-Hyuk Cha (2007) provides a clear definition of distance :

From the scientific and mathematical point of view, distance is defined as a quantitative degree of how far apart two objects are.

Hence, quantifying the distance of two objects requires the assumption about a particular space in which these objects live. For the euclidean distance, for example, this would mean comparison of objects (coordinates) in euclidean space (e.g. coordinate system) while other distance measures may require different spaces to allow sensitive and appropriate quantification of distances between objects (e.g. probability space). This aspect of quantifying the degree of how far two objects are apart in a defined space (adjusted definition) motivates the existence of diverse distance measures. As a result, the domain expert should appreciate the responsibility to decide in which space their model or experimental data is best represented and which distance metric then maximizes the usefulness of object comparison within this defined space.

Cha’s comprehensive review of distance/similarity measures motivated me to implement all these measures to better understand their comparative nature. As Cha states:

The choice of distance/similarity measures depends on the measurement type or representation of objects.

As a result, the philentropy package implements functions that are part of the following topics:

Personally, I hope that some of these functions are helpful to the scientific community.

Distance Measures

Here, the Distance Measure Vignette introduces how to work with the main function distance() that implements the 46 distance measures presented in Cha’s review.

Furthermore, for each distance/similarity measure a short description on usage and performance is presented.

The following probability distance/similarity measures will be described in detail:

Distance and Similarity Measures

\(L_p\) Minkowski Family

  • Euclidean : \(d = \sqrt{\sum_{i = 1}^N | P_i - Q_i |^2)}\)
  • Manhattan : \(d = \sum_{i = 1}^N | P_i - Q_i |\)
  • Minkowski : \(d = ( \sum_{i = 1}^N | P_i - Q_i |^p)^{1/p}\)
  • Chebyshev : \(d = max | P_i - Q_i |\)

\(L_1\) Family

  • Sorensen : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{\sum_{i = 1}^N (P_i + Q_i)}\)
  • Gower : \(d = \frac{1}{N} \dot \sum_{i = 1}^N | P_i - Q_i |\), where \(N\) is the total number of elements \(i\) in \(P_i\) and \(Q_i\)
  • Soergel : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{\sum_{i = 1}^N max(P_i , Q_i)}\)
  • Kulczynski d : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{\sum_{i = 1}^N min(P_i , Q_i)}\)
  • Canberra : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{(P_i + Q_i)}\)
  • Lorentzian : \(d = \sum_{i = 1}^N ln(1 + | P_i - Q_i |)\)

Intersection Family

  • Intersection : \(s = \sum_{i = 1}^N min(P_i , Q_i)\)
  • Non-Intersection : \(d = 1 - \sum_{i = 1}^N min(P_i , Q_i)\)
  • Wave Hedges : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{max(P_i , Q_i)}\)
  • Czekanowski : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i |}{\sum_{i = 1}^N | P_i + Q_i |}\)
  • Motyka : \(d = \frac{\sum_{i = 1}^N min(P_i , Q_i)}{(P_i + Q_i)}\)
  • Kulczynski s : \(d = \frac{\sum_{i = 1}^N min(P_i , Q_i)}{\sum_{i = 1}^N | P_i - Q_i |}\)
  • Tanimoto : \(d = \frac{\sum_{i = 1}^N (max(P_i , Q_i) - min(P_i , Q_i))}{\sum_{i = 1}^N max(P_i , Q_i)}\) ; equivalent to Soergel
  • Ruzicka : \(s = \frac{\sum_{i = 1}^N min(P_i , Q_i)}{\sum_{i = 1}^N max(P_i , Q_i)}\) ; equivalent to 1 - Tanimoto = 1 - Soergel

Inner Product Family

  • Inner Product : \(s = \sum_{i = 1}^N P_i \dot Q_i\)
  • Harmonic mean : \(s = 2 \cdot \frac{ \sum_{i = 1}^N P_i \cdot Q_i}{P_i + Q_i}\)
  • Cosine : \(s = \frac{\sum_{i = 1}^N P_i \cdot Q_i}{\sqrt{\sum_{i = 1}^N P_i^2} \cdot \sqrt{\sum_{i = 1}^N Q_i^2}}\)
  • Kumar-Hassebrook (PCE) : \(s = \frac{\sum_{i = 1}^N (P_i \cdot Q_i)}{(\sum_{i = 1}^N P_i^2 + \sum_{i = 1}^N Q_i^2 - \sum_{i = 1}^N (P_i \cdot Q_i))}\)
  • Jaccard : \(d = 1 - \frac{\sum_{i = 1}^N P_i \cdot Q_i}{\sum_{i = 1}^N P_i^2 + \sum_{i = 1}^N Q_i^2 - \sum_{i = 1}^N P_i \cdot Q_i}\) ; equivalent to 1 - Kumar-Hassebrook
  • Dice : \(d = \frac{\sum_{i = 1}^N (P_i - Q_i)^2}{(\sum_{i = 1}^N P_i^2 + \sum_{i = 1}^N Q_i^2)}\)

Squared-chord Family

  • Fidelity : \(s = \sum_{i = 1}^N \sqrt{P_i \cdot Q_i}\)
  • Bhattacharyya : \(d = - ln \sum_{i = 1}^N \sqrt{P_i \cdot Q_i}\)
  • Hellinger : \(d = 2 \cdot \sqrt{1 - \sum_{i = 1}^N \sqrt{P_i \cdot Q_i}}\)
  • Matusita : \(d = \sqrt{2 - 2 \cdot \sum_{i = 1}^N \sqrt{P_i \cdot Q_i}}\)
  • Squared-chord : \(d = \sum_{i = 1}^N ( \sqrt{P_i} - \sqrt{Q_i} )^2\)

Squared \(L_2\) family (\(X^2\) squared family)

  • Squared Euclidean : \(d = \sum_{i = 1}^N ( P_i - Q_i )^2\)
  • Pearson \(X^2\) : \(d = \sum_{i = 1}^N ( \frac{(P_i - Q_i )^2}{Q_i} )\)
  • Neyman \(X^2\) : \(d = \sum_{i = 1}^N ( \frac{(P_i - Q_i )^2}{P_i} )\)
  • Squared \(X^2\) : \(d = \sum_{i = 1}^N ( \frac{(P_i - Q_i )^2}{(P_i + Q_i)} )\)
  • Probabilistic Symmetric \(X^2\) : \(d = 2 \cdot \sum_{i = 1}^N ( \frac{(P_i - Q_i )^2}{(P_i + Q_i)} )\)
  • Divergence : \(X^2\) : \(d = 2 \cdot \sum_{i = 1}^N ( \frac{(P_i - Q_i )^2}{(P_i + Q_i)^2} )\)
  • Clark : \(d = \sqrt{\sum_{i = 1}^N (\frac{| P_i - Q_i |}{(P_i + Q_i)^2}}\)
  • Additive Symmetric \(X^2\) : \(d = \sum_{i = 1}^N ( \frac{((P_i - Q_i)^2 \cdot (P_i + Q_i))}{(P_i \cdot Q_i)} )\)

Shannon’s Entropy Family

  • Kullback-Leibler : \(d = \sum_{i = 1}^N P_i \cdot log(\frac{P_i}{Q_i})\)
  • Jeffreys : \(d = \sum_{i = 1}^N (P_i - Q_i) \cdot log(\frac{P_i}{Q_i})\)
  • K divergence : \(d = \sum_{i = 1}^N P_i \cdot log(\frac{2 \cdot P_i}{P_i + Q_i})\)
  • Topsoe : \(d = \sum_{i = 1}^N ( P_i \cdot log(\frac{2 \cdot P_i}{P_i + Q_i}) ) + ( Q_i \cdot log(\frac{2 \cdot Q_i}{P_i + Q_i}) )\)
  • Jensen-Shannon : \(d = 0.5 \cdot ( \sum_{i = 1}^N P_i \cdot log(\frac{2 \cdot P_i}{P_i + Q_i}) + \sum_{i = 1}^N Q_i \cdot log(\frac{2 * Q_i}{P_i + Q_i}))\)
  • Jensen difference : \(d = \sum_{i = 1}^N ( (\frac{P_i \cdot log(P_i) + Q_i \cdot log(Q_i)}{2}) - (\frac{P_i + Q_i}{2}) \cdot log(\frac{P_i + Q_i}{2}) )\)

Combinations

  • Taneja : \(d = \sum_{i = 1}^N ( \frac{P_i + Q_i}{2}) \cdot log( \frac{P_i + Q_i}{( 2 \cdot \sqrt{P_i \cdot Q_i})} )\)
  • Kumar-Johnson : \(d = \sum_{i = 1}^N \frac{(P_i^2 - Q_i^2)^2}{2 \cdot (P_i \cdot Q_i)^{\frac{3}{2}}}\)
  • Avg(\(L_1\), \(L_n\)) : \(d = \frac{\sum_{i = 1}^N | P_i - Q_i| + max{ | P_i - Q_i |}}{2}\)

Note: \(d\) refers to distance measures, whereas \(s\) denotes similarity measures.

Information Theory

Modern methods for distribution comparisons have a strong information theoretic background. This fact motivated me to name this package philentropy and as a result, several well established information theory measures are (and further will be) implemented in this package.