Skip to main content

Python library to compute heterogeneity indexes based on optimal transport.

Project description

ot-heterogeneity

A project to compute optimal transport based heterogeneity indexes.

1 - Usage

The librairy can simply be installed using pip install oterogeneity and then imported and used as documented here :

import oterogeneity as oth
from oterogeneity import utils

unitary_direction_matrix, distance = utils.compute_unitary_direction_matrix_polar(lat, lon)
results = oth.ot_heterogeneity_populations(
	distrib_canidates, distance_matrix, unitary_direction_matrix
)

1.a - The result class

The ot_heterogeneity_results class contains all of the results of a computation of spatial heterogeneity based on optimal transport using our method.

It contains the following attributes (that may be None if not applicable) :

  • size (int): Number of spatial units (town, polling stations, etc...)
  • num_categories (int): number of distinct categories
  • num_dimensions (int): number of spacial dimensions (typically 2)
  • has_direction (bool): whether the result contains directionality fields or not
  • global_heterogeneity (float): global heterogeneity index
  • global_heterogeneity_per_category (np.array): 1d-array of length num_categories that contains the local heterogeneity index for each category.
  • local_heterogeneity (np.array): 1d-array of length size that contains the local heterogeneity index for each location
  • local_signed_heterogeneity (np.array): either a 2d-array of shape (num_categories, size) when num_categories > 1, or a 1d-array of length size if num_categories = 1, that contains the signed heterogeneity index for each category and each location.
  • local_exiting_heterogeneity (np.array): 1d-array of length size that contains the heterogeneity index based only on exiting flux for each location.
  • local_entering_heterogeneity (np.array): 1d-array of length size that contains the heterogeneity index based only on entering flux for each location.
  • local_heterogeneity_per_category (np.array): 1d-array of length size that contains the heterogeneity index for each location.
  • local_exiting_heterogeneity_per_category (np.array): 2d-array of shape (num_categories, size) that contains the heterogeneity index based only on exiting flux for each category and each location.
  • local_entering_heterogeneity_per_category (np.array): 2d-array of shape (num_categories, size) that contains the heterogeneity index based only on entering flux for each category and each location.
  • direction (np.array): 2d-array of shape (num_dimensions, size) representing the vectorial field of directionality.
  • direction_per_category (np.array): 3d-array of shape (num_categories, num_dimensions, size) representing the vectorial field of directionality for each category.

1.b - Functions

1.b.1 - ot_heterogeneity_from_null_distrib

The ot_heterogeneity_from_null_distrib function is the most general function implementing our method for measuring spatial heterogeneity.

def ot_heterogeneity_from_null_distrib(
	distrib, null_distrib, distance_mat,
	transport_plane=None, return_transport_plane: bool=False,
	unitary_direction_matrix=None, local_weight_distrib=None, category_weights=None,
	epsilon_exponent: float=-1e-3, use_same_exponent_weight: bool=True,
	min_value_avoid_zeros: float=1e-5, ot_emb_args : list=[], ot_emb_kwargs : dict={}
)

The following parameters are passed to the function :

  • distrib (np.array): 2d-array of shape (num_categories, size) representing the population distribution, i.e. the population of each category in each location.
  • null_distrib (np.array): either a 2d-array of shape (num_categories, size) or a 1d-array of length size if every category has the same null distribution, representing the null distribution (distribution without heterogeneity), to which the distribution will be compared.
  • distance_mat (np.array): 2d-array of shape (size, size) representing the distance between each locality.

With the following parameters being optional :

  • transport_plane (np.array): either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.
  • return_transport_plane (bool): if true, the function will also return the transport plane.
  • unitary_direction_matrix (np.array): 3d-array of shape (num_categories, size, size) representing the unitary vector between each location.
  • local_weight_distrib (np.array): 1d-array of length size representing the weight for each location. By default this weight is simply the proportion of the total population located in each location.
  • category_weights (np.array): 1d-array of length num_categories representing the weight for each num_category. By default this weight is simply the proportion of the total population that belong to each category.
  • epsilon_exponent (float): the distance matrix is exponentiated (element-wise) by an exponent 1+epsilon_exponent
  • use_same_exponent_weight (bool): if true the cost (i.e. distant) is exponentiated by the same exponent as the one for the cost matrix in the optimal-transport computation.
  • min_value_avoid_zeros (float): value below wich a value is concidered zero.
  • ot_emb_args (list): list of additional unamed argument to pass to the ot.emb function that is used as a backend.
  • ot_emb_kwargs (dict): list of additional amed argument to pass to the ot.emb function that is used as a backend.

The function returns a result as an object of class ot_heterogeneity_results.

If return_transport_plane is true, the function also returns the transport plane (np.array) which is either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.

If return_transport_plane is true, the function also returns the transport plane (np.array) which is either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.

1.b.2 - ot_heterogeneity_populations

The ot_heterogeneity_populations function uses the total population distribution accross all classes as the null distribution. It thus assumes the nul distribution is the distribution where the total population at each location doesn't change, and the proportion of each category is the same as the global distribution of classes.

def ot_heterogeneity_populations(
	distrib, distance_mat, total_population_distrib=None, unitary_direction_matrix=None,
	transport_plane=None, return_transport_plane: bool=False,
	epsilon_exponent: float=-1e-3, use_same_exponent_weight: bool=True,
	min_value_avoid_zeros: float=1e-5, ot_emb_args : list=[], ot_emb_kwargs : dict={}
)

The following parameters are passed to the function :

  • distrib (np.array): 2d-array of shape (num_categories, size) representing the population distribution, i.e. the population of each category in each location.
  • distance_mat (np.array): 2d-array of shape (size, size) representing the distance between each locality.

With the following parameters being optional :

  • transport_plane (np.array): either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.
  • return_transport_plane (bool): if true, the function will also return the transport plane.
  • unitary_direction_matrix (np.array): 3d-array of shape (num_categories, size, size) representing the unitary vector between each location.
  • epsilon_exponent (float): the distance matrix is exponentiated (element-wise) by an exponent 1+epsilon_exponent
  • use_same_exponent_weight (bool): if true the cost (i.e. distant) is exponentiated by the same exponent as the one for the cost matrix in the optimal-transport computation.
  • min_value_avoid_zeros (float): value below wich a value is concidered zero.
  • ot_emb_args (list): list of additional unamed argument to pass to the ot.emb function that is used as a backend.
  • ot_emb_kwargs (dict): list of additional amed argument to pass to the ot.emb function that is used as a backend.

The function returns a result as an object of class ot_heterogeneity_results.

If return_transport_plane is true, the function also returns the transport plane (np.array) which is either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.

1.b.1 - ot_heterogeneity_linear_regression

The ot_heterogeneity_linear_regression function will be documented later on.

def ot_heterogeneity_linear_regression(
	distrib, prediction_distrib, distance_mat, local_weight_distrib=None,
	transport_plane=None, return_transport_plane: bool=False, unitary_direction_matrix=None,
	fit_regression : bool=True, regression=sklearn.linear_model.LinearRegression(), 
	epsilon_exponent: float=-1e-3, use_same_exponent_weight: bool=True,
	min_value_avoid_zeros: float=1e-5, ot_emb_args : list=[], ot_emb_kwargs : dict={}
)

1.c - Utility functions

The utility functions are located in the utils package, so they should be used from this subpackage :

import oterogeneity as oth
from oterogeneity import utils

unitary_direction_matrix, distance = utils.compute_unitary_direction_matrix_polar(lat, lon)
# Or :
unitary_direction_matrix, distance = oth.utils.compute_unitary_direction_matrix_polar(lat, lon)

1.c.1 - compute_optimal_transport_flux

def compute_optimal_transport_flux(
	distributions_to, distributions_from, distance_mat,
	ot_emb_args : list=[], ot_emb_kwargs : dict={}
)

The compute_optimal_transport_flux function computes the distance between a list of coordinates.

  • distributions_to (np.array): 2d-array of shape (num_dimensions, size) or 1d-array of length size representing the end distribution of population.
  • distributions_from (np.array): 2d-array of shape (num_dimensions, size) or 1d-array of length size representing the starting distribution of population that will be transported to distributions_to.
  • distance_mat (np.array): 2d-array of shape (size, size) filled with the distance between each location.
  • ot_emb_args (list): list of additional unamed argument to pass to the ot.emb function that is used as a backend.
  • ot_emb_kwargs (dict): list of additional amed argument to pass to the ot.emb function that is used as a backend.

It returns the transport plane (np.array) which is either a 3d array of shape (num_dimensions, size, size) or a 2d array of shape (size, size) if distributions_from is only 1d. Element of index (n, i, j) reprensents the flux of population n from locality i to locality j.

1.c.2 - compute_distance_matrix

The compute_distance_matrix function computes the distance between a list of coordinates.

def compute_distance_matrix(coordinates, exponent: float=2)

The compute_distance_matrix function takes the following parameters :

  • coordinates (np.array): 2d-array of shape (num_dimensions, size) representing the position of each location.
  • exponent (float): the exponent used in the norm (2 is the euclidien norm).

It returns the distance matrix filled with the distance between each location.

1.c.3 - compute_distance_matrix_polar

The compute_distance_matrix_polar function computes the distance between a list of coordinates from polar coordinates on a sphere. by default it can be used for typical coordinates on earth.

def compute_distance_matrix_polar(latitudes, longitudes, radius: float=6378137, unit: str="deg")

The compute_distance_matrix function takes the following parameters :

  • latitudes (np.array): 1d-array of length size with the latitudes of each point.
  • longitudes (np.array): 1d-array of length size with the longitudes of each point.
  • radius (float): radius of the sphere (by default 6378137 which is the radius of the earth in meters).
  • unit (str): a string to define the unit of the longitude and latituden, eather "rad", "deg" (default), "arcmin", or "arcsec".

It returns the distance matrix filled with the distance between each location.

1.c.4 - compute_unitary_direction_matrix

The compute_unitary_direction_matrix function computes the matrix of unitary vectors used to computed direction in the main functions.

def compute_unitary_direction_matrix(coordinates, distance_mat=None, exponent: float=2)

The compute_unitary_direction_matrix function takes the following parameters :

  • coordinates (np.array): 2d-array of shape (num_dimensions, size) representing the position of each location.
  • distance_mat (np.array): you can optionally pass a 2d-array of shape (size, size) filled with the distance between each location. If not passed it will be computed and returned.
  • exponent (float): the exponent used in the norm (2 is the euclidien norm). If a distance matrix is passed, it must have been computed with the same exponent as the one passed to this function.

It returns the following values :

  • unitary_direction_matrix (np.array): 3d-array of shape (num_categories, size, size) representing the unitary vector between each location.
  • distance_mat (np.array): a distance matrix is returned if it was not passed as a parameter (to avoid recomputing it), it is a 2d-array of shape (size, size) filled with the distance between each location.

1.c.5 - compute_unitary_direction_matrix_polar

The compute_unitary_direction_matrix_polar function computes the matrix of unitary vectors used to computed direction in the main functions, between a list of coordinates from polar coordinates on a sphere. by default it can be used for typical coordinates on earth.

def compute_unitary_direction_matrix_polar(latitudes, longitudes, distance_mat=None, radius: float=6378137, unit: str="deg")

The compute_unitary_direction_matrix_polar function takes the following parameters :

  • latitudes (np.array): 1d-array of length size with the latitudes of each point.
  • longitudes (np.array): 1d-array of length size with the longitudes of each point.
  • radius (float): radius of the sphere (by default 6378137 which is the radius of the earth in meters).
  • distance_mat (np.array): you can optionally pass a 2d-array of shape (size, size) filled with the distance between each location. If not passed it will be computed and returned.
  • unit (str): a string to define the unit of the longitude and latituden, eather "rad", "deg" (default), "arcmin", or "arcsec".

It returns the following values :

  • unitary_direction_matrix (np.array): 3d-array of shape (num_categories, size, size) representing the unitary vector between each location.
  • distance_mat (np.array): a distance matrix is returned if it was not passed as a parameter (to avoid recomputing it), it is a 2d-array of shape (size, size) filled with the distance between each location.

2 - License

"oterogeneity" (c) by @jolatechno - Joseph Touzet

"oterogeneity" is licensed under a
Creative Commons Attribution 4.0 International License.

You should have received a copy of the license along with this
work. If not, see <https://creativecommons.org/licenses/by/4.0/>.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oterogeneity-1.0.0.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oterogeneity-1.0.0-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file oterogeneity-1.0.0.tar.gz.

File metadata

  • Download URL: oterogeneity-1.0.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for oterogeneity-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4de065f3caa21e7ef4623a25b77325a37b9170743fffb1e0680a6913d6ba2be2
MD5 2004086f6722f026466d69e263836f00
BLAKE2b-256 5db23368ae1cda47c49c3b47be3f66c29e4783af3f447972c233b15a3ebbe8c7

See more details on using hashes here.

File details

Details for the file oterogeneity-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: oterogeneity-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for oterogeneity-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6ac8c51e573fc4e56381eb1d7099194a4ad62bdda23e87d847ff731f5483952c
MD5 4f3d328bfd3b27cf97492883e9013598
BLAKE2b-256 77d61f2323133b307dfedeec5204a5d3d8aea40b0936697678a9a16fb5db3b8b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page