Home

Awesome

Segregation Analysis, Inference, and Decomposition with PySAL

codecov PyPI - Python Version PyPI Conda (channel only) GitHub commits since latest release (branch) DOI Documentation

The PySAL segregation package is a tool for analyzing patterns of urban segregation. With only a few lines of code, segregation users can

Calculate over 40 segregation measures from simple to state-of-the art, including:

Test whether segregation estimates are statistically significant:

Decompose segregation comparisons into

Installation

Released versions of segregation are available on pip and anaconda

pip:

pip install segregation

anaconda:

conda install -c conda-forge segregation

You can also install the current development version from this repository

download anaconda:

cd into the directory and run the following commands

conda env create -f environment.yml
conda activate segregation
python setup.py develop

Getting started

For a complete guide to the segregation API, see the online documentation.

For code walkthroughs and sample analyses, see the example notebooks

Calculating Segregation Measures

Each index in the segregation module is implemented as a class, which is built from a pandas.DataFrame or a geopandas.GeoDataFrame. To estimate a segregation statistic, a user needs to call the segregation class she wishes to estimate, and pass three arguments:

Every class in segregation has a statistic and a core_data attributes. The first is a direct access to the point estimation of the specific segregation measure and the second attribute gives access to the main data that the module uses internally to perform the estimates.

Single group measures

If, for example, a user was studying income segregation and wanted to know whether high-income residents tend to be more segregated from others. This user may want would want to fit a dissimilarity index (D) to a DataFrame called df to a specific group with columns like "hi_income", "med_income" and "low_income" that store counts of people in each income bracket, and a total column called "total_population". A typical call would be something like this:

from segregation.aspatial import Dissim
d_index = Dissim(df, "hi_income", "total_population")

To see the estimated D in the first generic example above, the user would have just to run d_index.statistic to see the fitted value.

If a user would want to fit a spatial dissimilarity index (SD), the call would be nearly identical, save for the fact that the DataFrame now needs to be a GeoDataFrame with an appropriate geometry column

from segregation.spatial import SpatialDissim
spatial_index = SpatialDissim(gdf, "hi_income", "total_population")

Some spatial indices can also accept either a PySAL W object, or a pandana Network object, which allows the user full control over how to parameterize spatial effects. The network functions can be particularly useful for teasing out differences in segregation measures caused by two cities that have two very different spatial structures, like for example Detroit MI (left) and Monroe LA (right):

For point estimation, all single-group indices available are summarized in the following table:

MeasureClass/FunctionSpatial?Specific Arguments
Dissimilarity (D)DissimNo-
Gini (G)GiniSegNo-
Entropy (H)EntropyNo-
Isolation (xPx)IsolationNo-
Exposure (xPy)ExposureNo-
Atkinson (A)AtkinsonNob
Correlation Ratio (V)CorrelationRNo-
Concentration Profile (R)ConProfNom
Modified Dissimilarity (Dct)ModifiedDissimNoiterations
Modified Gini (Gct)ModifiedGiniSegNoiterations
Bias-Corrected Dissimilarity (Dbc)BiasCorrectedDissimNoB
Density-Corrected Dissimilarity (Ddc)DensityCorrectedDissimNoxtol
Minimun-Maximum Index (MM)MinMaxNo
Spatial Proximity Profile (SPP)SpatialProxProfYesm
Spatial Dissimilarity (SD)SpatialDissimYesw, standardize
Boundary Spatial Dissimilarity (BSD)BoundarySpatialDissimYesstandardize
Perimeter Area Ratio Spatial Dissimilarity (PARD)PerimeterAreaRatioSpatialDissimYesstandardize
Distance Decay Isolation (DDxPx)DistanceDecayIsolationYesalpha, beta, metric
Distance Decay Exposure (DDxPy)DistanceDecayExposureYesalpha, beta, metric
Spatial Proximity (SP)SpatialProximityYesalpha, beta, metric
Absolute Clustering (ACL)AbsoluteClusteringYesalpha, beta, metric
Relative Clustering (RCL)RelativeClusteringYesalpha, beta, metric
Delta (DEL)DeltaYes-
Absolute Concentration (ACO)AbsoluteConcentrationYes-
Relative Concentration (RCO)RelativeConcentrationYes-
Absolute Centralization (ACE)AbsoluteCentralizationYes-
Relative Centralization (RCE)RelativeCentralizationYes-
Relative Centralization (RCE)RelativeCentralizationYes-
Spatial Minimun-Maximum (SMM)SpatialMinMaxYesnetwork, w, decay, distance, precompute

Multigroup measures

segregation also facilitates the estimation of multigroup segregation measures.

In this case, the call is nearly identical to the single-group, only now we pass a list of column names rather than a single string; reprising the income segregation example above, an example call might look like this

from segregation.aspatial import MultiDissim
index = MultiDissim(df, ['hi_income', 'med_income', 'low_income'])
index.statistic

Available multi-group indices are summarized in the table below:

MeasureClass/FunctionSpatial?Specific Arguments
Multigroup DissimilarityMultiDissimNo-
Multigroup GiniMultiGiniSegNo-
Multigroup Normalized ExposureMultiNormalizedExposureNo-
Multigroup Information TheoryMultiInformationTheoryNo-
Multigroup Relative DiversityMultiRelativeDiversityNo-
Multigroup Squared Coefficient of VariationMultiSquaredCoefficientVariationNo-
Multigroup DiversityMultiDiversityNonormalized
Simpson’s ConcentrationSimpsonsConcentrationNo-
Simpson’s InteractionSimpsonsInteractionNo-
Multigroup DivergenceMultiDivergenceNo-

Local measures

Also, it is possible to calculate local measures of segregation. A statistics attribute will contain the values of these indexes. Note: in this case the attribute is in the plural since, many statistics are fitted, one for each enumeration unit Local segregation indices have the same signature as their global cousins and are summarized in the table below:

MeasureClass/FunctionSpatial?Specific Arguments
Location QuotientMultiLocationQuotientNo-
Local DiversityMultiLocalDiversityNo-
Local EntropyMultiLocalEntropyNo-
Local Simpson’s ConcentrationMultiLocalSimpsonConcentrationNo-
Local Simpson’s InteractionMultiLocalSimpsonInteractionNo-
Local CentralizationLocalRelativeCentralizationYes-

Testing for Statistical Significance

Once the segregation indexes are fitted, the user can perform inference to shed light for statistical significance in regional analysis. The summary of the inference framework is presented in the table below:

Inference TypeClass/FunctionFunction main InputsFunction Outputs
Single ValueSingleValueTestseg_class, iterations_under_null, null_approach, two_tailedp_value, est_sim, statistic
Two ValuesTwoValueTestseg_class_1, seg_class_2, iterations_under_null, null_approachp_value, est_sim, est_point_diff

Single Value Inference

Two-Value Inference

Decomposition

Another useful analysis that can be performed with the segregation module is a decompositional approach where two different indexes can be broken down into their spatial component (c_s) and attribute component (c_a). This framework is summarized in the table below:

FrameworkClass/FunctionFunction main InputsFunction Outputs
DecompositionDecomposeSegregationindex1, index2, counterfactual_approachc_a, c_s

In this case, the difference in measured D statistics between Detroit and Monroe is attributable primarily to their demographic makeup, rather than the spatial structure of the two cities. (Note, this is to be expected since D is not a spatial index)

Contributing

PySAL-segregation is under active development and contributors are welcome.

If you have any suggestion, feature request, or bug report, please open a new issue on GitHub. To submit patches, please follow the PySAL development guidelines and open a pull request. Once your changes get merged, you’ll automatically be added to the Contributors List.

Support

If you are having issues, please talk to us in the gitter room.

License

The project is licensed under the BSD license.

Funding

<img src="figs/nsf_logo.jpg" width="50"> Award #1831615 RIDIR: Scalable Geospatial Analytics for Social Science Research

<img src="figs/capes_logo.jpg" width="50"> Renan Xavier Cortes is grateful for the support of Coordenação de Aperfeiçoamento de Pessoal de Nível Superior - Brazil (CAPES) - Process number 88881.170553/2018-01

Citation

To cite segregation, we recommend the following

@software{renan_xavier_cortes_2020,
  author       = {Renan Xavier Cortes and
                  eli knaap and
                  Sergio Rey and
                  Wei Kang and
                  Philip Stephens and
                  James Gaboardi and
                  Levi John Wolf and
                  Antti Härkönen and
                  Dani Arribas-Bel},
  title        = {PySAL/segregation: Segregation Analysis, Inference, & Decomposition},
  month        = feb,
  year         = 2020,
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.3265359},
  url          = {https://doi.org/10.5281/zenodo.3265359}
}