The aim of this case-study consists in exploring functions proposed by the MTA package in a structured path of investigation (following the logic proposed by HyperAtlas) by associating MTA functions with relevant maps and plots.
In this vignette, we will investigate the concrete example of income inequalities in the Metropolis of Greater Paris (Métropole du Grand Paris).
Several elements must be considered: the study area, the territorial hierarchy and the selected indicator.
Metropolis of Greater Paris (MGP) : a study area making sense in a political context.
The MGP has been created the 1st January 2016 after a prefiguration mission and aims at finding solutions to improve and develop the potential of the Paris metropolitan area to be more present at international level (following the initiatives that took place in London, New-York or Tokyo). The official website (last visit: 2016-03) of this infrastructure provides all the details of this new level of governance. Namely, this spatial planning project proposes to “develop a stronger solidarity between territories, reduce territorial inequalities and propose a re-equilibrium in term of access to household, employment, training, services and equipments”. For this emerging zoning of spatial planning, the need for indicators and analysis of territorial inequalities is high. The MTA methodology seems to be particularly adapted to propose territorial evidences in this context.
From the IRIS to the MGP, a lot of hierarchical territorial divisions are available.
The lowest territorial level existing in France associated with public statistical information is IRIS (Ilots Regroupés pour l’Information Statistique). The reference size targeted for each IRIS is 2000 inhabitants. Each commune over 10 000 inhabitants and a high proportion of communes between 5 000 and 10 000 inhabitants are split in IRIS. It is possible to merge these IRIS in communes (36 000 territorial units in France). These communes can also be merged in Établissements Publics Territoriaux or in Départements. Each territorial context has specific competences in spatial planning term. Thus, the MGP is constituted by a large number of territorial divisions. It allows the calculation of a high number of deviations according to these territorial contexts. This analysis is mainly focused on communes and Établissements Publics Territoriaux (EPT) but could be extended to other territorial levels.
Indicators relevant at this scale of analysis.
The chosen indicator (average income tax reference per households) is one of the key drivers of spatial planning policies at local level in France. It is one of the indicators considered relevant for city policy (Politique de la Ville).
This vignette proposes some concrete ouptuts for improving the knowledge on income inequalities and proposing solutions for a better geographical repartition of wealth in the MGP area. Relevant statistics will be computed using MTA functionalities and plotted on graphics and maps.
com.spdf and ept.spdf: 2 SpatialPolygonsDataFrame. com.spdf is a SpatialPolygonsDataFrame of the 150 MGP communes. ept.spdf is a SpatialPolygonsDataFrame of 12 MGP EPTs. (see ?com.spdf and ?ept.spdf)
com: a data frame of data on the MGP communes. It includes communes identifiers (DEPCOM), communes names (LIBCOM), identifiers and names of the EPTs of belonging of each commune (EPT and LIBEPT), identifier of the departement of belonging of each commmune (DEP) and the statistical indicators for the multiscalar inequality analysis, the numerator (amount of income tax references in Euros, INC) and the denominator (number of tax households, TH) (see ?com).
We use 2 additional and complementary packages in this vignette: cartography for thematic mapping purposes and ineq for computing inequality indexes and Lorenz Curve Plot.
# load packages
library(MTA)
library(cartography)
## Loading required package: sp
library(ineq)
library(reshape2)
# load dataset
data("GrandParisMetropole", package = "MTA")
# set row names to communes names
row.names(com) <- com$LIBCOM
Context maps are useful to begin the MTA. They highlight the territorial organisation of the study area and provide some first insights regarding the spatial patterns introduced by the indicator used for the analysis.
# set margins
par(mar = c(0,0,1.2,0))
# label management
com$LIBEPT2 <- com$LIBEPT
com[com$LIBEPT == "Val de Bievres - Seine Amond - Grand Orly", "LIBEPT2"] <-
"Val de Bievres -\nSeine Amond - Grand Orly"
com[com$LIBEPT == "Plaine Centrale - Haut Val-de-Marne - Plateau Briard", "LIBEPT2"] <-
"Plaine Centrale -\nHaut Val-de-Marne - Plateau Briard"
com[com$LIBEPT == "Association des Communes de l'Est Parisien", "LIBEPT2"] <-
"Association des Communes\nde l'Est Parisien"
# label order
epts <- c("Paris",
"Est Ensemble",
"Grand-Paris Est",
"Territoire des aeroports",
"Plaine Commune",
"Boucle Nord 92",
"La Defense",
"Grand Paris Sud Ouest",
"Sud Hauts-de-Seine",
"Val de Bievres -\nSeine Amond - Grand Orly",
"Plaine Centrale -\nHaut Val-de-Marne - Plateau Briard",
"Association des Communes\nde l'Est Parisien")
# colors
cols <- c("purple", carto.pal("blue.pal", 8)[c(1,3,6,8)],
carto.pal("green.pal", 8)[c(1,3,6,8)],
carto.pal("red.pal", 8)[c(3,5,8)])
# zoning
typoLayer(spdf = com.spdf, df = com,
var="LIBEPT2", legend.values.order = epts,
legend.pos = "left",
col = cols,
legend.title.txt = "EPT")
# layout
layoutLayer(title = "Territorial Zoning of the MGP",
sources = "GEOFLA® 2015 v2.1, Apur",
author = "RIATE, 2016",
scale = 5,
frame = TRUE,
col = "black",
coltitle = "white",
south = FALSE)
The 150 municipalities of the MGP are grouped in 12 intermediate zonings: the Établissements Publics Territoriaux (EPT). This territorial zoning respect approximately the delineation of the départements : the EPTs of Seine-Saint-Denis are displayed in blue palette; the EPT of Paris is displayed in purple; the EPTs of Hauts-de-Seine are displayed in green palette (it includes also one municipality of Val-d’Oise in the North-West of Boucle Nord 92) and the EPTs of Val-de-Marne are displayed in red palette (it includes also 6 municipalities in the south part of Val-de-Bièvres EPT).
First it is interesting to plot on maps the different statistical dimensions of the indicator we are interested in: the numerator (total amount of income tax references), the denominator (number of tax households) and the ratio (average income per tax households).
# layout
par(mfrow = c(1,2), mar = c(0,0,1.2,0))
# numerator map
com$INCM <- com$INC / 1000000
plot(com.spdf, col = "peachpuff", border = "grey20", lwd = 0.2)
propSymbolsLayer(spdf = com.spdf, df = com,
var = "INCM",
symbols = "circle", col = "#F6533A",
inches = 0.15,
border = "#25252570",
legend.pos = "topleft", legend.values.rnd = 0,
legend.title.txt = "Amount of income taxe reference\n(millions of euros)",
legend.style = "c")
# layout
layoutLayer(title = "Numerator - Amount of income tax reference",
sources = "GEOFLA® 2015 v2.1, Apur, impots.gouv.fr",
author = "RIATE, 2016",
scale = NULL,
frame = FALSE,
col = "black",
coltitle = "white")
# denominator map
plot(com.spdf, col = "peachpuff",border = "grey20",lwd=0.2)
propSymbolsLayer(spdf = com.spdf, df = com,
var = "TH",
symbols = "circle", col = "#515FAA",
border = "#25252570",
inches = 0.15,
legend.pos = "topleft", legend.values.rnd = -2,
legend.title.txt = "Number of tax households",
legend.style = "c")
# layout
layoutLayer(title = "Denominator - Tax households",
sources = "",
author = "",
scale = 5,
frame = FALSE,
col = "black",
coltitle = "white")
Without surprise, the highest amounts of tax households and income are located in the central area of the MGP (Paris arrondissements). That being said, these two maps suggest an inequal repartition of income in regard to the repartition of population in Paris suburbs.
# margins
par(mar = c(0,0,1.2,0))
# ratio
com$ratio <- com$INC / com$TH
# ratio map
choroLayer(spdf = com.spdf,
df = com,
var = "ratio",
breaks = c(min(com$ratio,na.rm=TRUE),20000,
30000,40000,50000,60000,
max(com$ratio,na.rm=TRUE)),
col = carto.pal(pal1 = "red.pal", n1 = 6),
border = "grey20",
lwd=0.2,
legend.pos = "topleft",
legend.title.txt = "Average amount of income tax\nreference per households\n(in euros)",
legend.values.rnd = 0)
# EPT borders
plot(ept.spdf,border="#f0f0f0",lwd=0.5,add=T)
# layout
layoutLayer(title = "Ratio - Income per tax households, 2013",
sources = "GEOFLA® 2015 v2.1, Apur, impots.gouv.fr",
author = "RIATE, 2016",
scale = NULL,
frame = FALSE,
col = "black",
coltitle = "white")
The MGP area is characterised by high income inequalities. For the 150 communes of this area, the values extend from 14 730 (La Courneuve) to 96 310 euros (Paris, 7th arrondissement). 53 municipalities of the MGP area (35 % of the communes) are below the French average, i.e. 25 660 euros. The lagging households are mainly concentrated into the north part of MGP area. Highest values are concentrated in the Western part of Paris and its suburbs.
MTA package introduces three contexts to monitor territorial inequalities: the general deviation, the territorial deviation and the spatial deviation.
The global deviation is dedicated to the analysis of inequalities using a value of reference. In this example the global deviation refers to the inequalities existing between each commune in regard to the whole Metropole du Grand Paris value.
The territorial deviation consists in measuring the inequalities existing for each basic territorial unit in regard to an intermediate territorial level of reference. In this case-study, for each basic territorial unit (Communes of the MGP in this case), it implies to include beforehand in the input dataset a territorial a factor describing the intermediate territorial belonging (departements or EPT). It allows to measure for each commune the deviation existing as regards to their EPT or departement of belonging.
The spatial deviation is a measure of inequalities taking into account the neighbourhood as a reference. It allows to measure the deviation existing between basic territorial units using three possible parameters : the territorial contiguity (order 1, 2 or n), the spatial neighbourhood (territorial units located at less than X kilometers as the crow flies) or functional distances (territorial units located at less than Y minutes by road for instance). In MTA, territorial contiguity and spatial neighbourhood measures are calculated directly from the spatialdataframe. Functional distances must be uploaded separately through a dataframe structured with the following fields : id1, id2, distance measure. For this case-study, the contiguity criteria (order 1) has been retained for the calculation of the spatial deviation. It gives a good proxy of proximity relationships according to the size and the homogeneity of the communes of the MGP area. Other measures could be also adapted, such as time-distances by road (communes located at less than 15 minutes by car) or by public transport.
In MTA, two methods are implemented to measure statistical differences to a given context of reference: the relative deviation and the absolute deviation. In MTA, each indicator is considered as a ratio defined by a numerator (GDP for instance) divided by a denominator (population for instance).
The relative deviation states the position of each region as regard to a context of reference expressed in index 100. It is based on the following calculation: Relative deviation (Region i) = 100 * ((Numerator(Region i)/Denominator(Region i)) /(reference ratio)) Territorial units characterised by a context of reference below index 100 are under the average of a given context of reference, and reciprocally.
The absolute deviation specifies which process of redistribution should be realised in absolute terms in order to achieve perfect equi-repartitition of the ratio of reference in the global, the territorial or the spatial context. It is calculated as below: Absoute deviation (Region i) = Numerator (Region i) - (reference ratio * denominator (Region i)) It examines how much amount of the numerator should be moved in order to reach equi-repartition, for each territorial unit, taking into account as a reference the selected deviation context value. More generally, absolute deviation must be considered as a statistical tool to discuss on the amplitude of existing territorial inequalities in absolute terms. It is obvious that reaching a perfect equilibrium between territorial units is highly sensitive and is scarcely a policy objective itself. It is neverthess interesting to consider the amount of money or population affected by the inequality to have in hand a concrete material for leading discussions on this delicate spatial planning issue.
In this vignette, color palette proposed for displaying on map the relative deviations are the ones suggested by the HyperAtlas tool (blue palette = under the average; red palette = above the average). But other diverging palettes (green/red, etc.) could be also be used for displaying MTA results on maps.
Absolute deviations are highlighted using proportional circles on maps. It examines which amount of the numerator should be moved to the poorest communes to reach equi-repartition. Circles displayed in a red palette means that the territorial unit have to contribute a given amount of numerator to achieve the equilibrium in a given context; and reciprocally circles displayed in a blue palette means that the territorial unit have to receive a given amount of numerator to achieve perfect convergence.
In this example, we have decided to merge in a same map the relative deviation (colour of the circles) and the absolute deviation (size of the circles) to be more synthetic. In HyperAtlas tool, this map is split in two maps (one for the relative and one for the absolute deviation). It is quite easy to reproduce these maps using the functionalities of the cartography package.
The analysis of the three deviations provides generally a high number of information, difficult to synthesise. The synthesis functions helps to summarise values of the global, territorial and spatial deviations and allow to answer to some basic and interesting questions:
This part proposes some graphical outputs helping to have an idea regarding inequalities existing at the global level. In this case, for all the study area: the Metropole du Grand Paris.
The code below takes in entry the numerator (INC) and the denominator (TH) and returns the global deviation indicators (relative and absolute). These indicators are afterwards associated with the input SpatialDataFrame (com.spdf) for displaying on map this deviation.
# general relative deviation
com$gdevrel <- gdev(x = com,
var1 = "INC",
var2 = "TH",
type = "rel")
# general absolute deviation
com$gdevabs <- gdev(x = com,
var1 = "INC",
var2 = "TH",
type = "abs")
# general deviation in million Euros
com$gdevabsmil <- com$gdevabs / 1000000
# margins
par(mar = c(0,0,1.2,0))
# Plot territories
plot(com.spdf, col = "grey70", border = "#EDEDED", lwd = 0.25)
plot(ept.spdf, border = "#1A1A19", lwd = 1, add = TRUE)
# Global deviation (relative and absolute) cartography
propSymbolsChoroLayer(spdf = com.spdf, df = com,legend.var.values.rnd = 4,
var = "gdevabsmil", var2 = "gdevrel",
add = TRUE,
inches = 0.3,
col = carto.pal(pal1 = "blue.pal", n1 = 3,
pal2 = "wine.pal", n2 = 3),
breaks = c(min(com$gdevrel,na.rm=TRUE),
75,90,100,111,133,
max(com$gdevrel,na.rm=TRUE)),
border = "#f0f0f0",
lwd = 0.25,
legend.var.pos = "left", legend.var2.pos = "topleft",
legend.var.title.txt = "Redistribution (Million euros)",
legend.var2.title.txt = "Deviation to the global context (100 = Metropole du Grand Paris average)",
legend.var.style = "e")
layoutLayer(title = "Global deviation - Tax income per households",
sources = "GEOFLA® 2015 v2.1, Apur, impots.gouv.fr",
author = "RIATE, 2016",
scale = NULL,
frame = FALSE,
col = "black",
coltitle = "white")
The resulting map highlights strong statistical differences of income earning in the MGP area (colour of the circles). It is firstly interesting to know that all the communes of the EPT of Plaine Commune, Territoire des aéroports and Est Ensemble are below the average of the MGP area (33 501 euros per households). For the territories of Val de Bièvres and Grand-Paris Est, only three communes are above the average of the study area. Reversely, all the communes of the Grand-Paris-Sud-Ouest EPT are largely above the average of the MGP area. For the other EPTs the situation is mixed, depending of the municipalities.
This map and these tables highlight the communes which may have to contribute / receive the highest to ensure a perfect equi-repartition in the context of the MGP (size of the circles). In this example, the 7th Arrondissement of Paris is the municipality which should contribute the most, all things being equal to its income tax level (1,987 billion Euros of income transfer, 65 % of the total amount of tax income in this municipality). Neuilly-sur-Seine (third position in absolute terms) should transfer 1,9 billion Euros to the lagging communes of the MGP area. It corresponds to 62,87% of the total amount of tax income declared in this municipality.
In the other side of the redistribution, La Courneuve should receive 402 million Euros from the wealthiest communes (127 % of the current tax income declared). Aubervilliers should receive 793 million Euros, which represents 124 % of the current tax income in this commune.
The code below allows to order the communes that have to receive / contribue the most in relative term in the global context to ensure a perfect equilibrium of resources.
# general deviation - Top 10 of the potential contributors in regard
# to their total amount of income
com$gdevabsPerc <- com$gdevabs / com$INC * 100
com <- com[order(com$gdevabsPerc, decreasing = TRUE), ]
com[1:10, c("gdevabsmil","gdevabsPerc")]
## gdevabsmil gdevabsPerc
## Paris 7e Arrondissement 1987.18261 65.21643
## Marnes-la-Coquette 46.58689 63.53843
## Neuilly-sur-Seine 1900.79972 62.87958
## Paris 8e Arrondissement 1167.45176 59.37545
## Paris 16e Arrondissement 4148.92114 56.91599
## Paris 6e Arrondissement 1030.25933 55.83634
## Vaucresson 174.81548 54.71988
## Saint-Cloud 473.60724 48.07040
## Ville-d'Avray 165.60016 46.23143
## Garches 246.70718 43.19362
# general deviation - Top 10 of the potential receivers in regard to
# their total amount of income
com <- com[order(com$gdevabsPerc, decreasing = FALSE), ]
com[1:10,c("gdevabsmil","gdevabsPerc")]
## gdevabsmil gdevabsPerc
## La Courneuve -402.2023 -127.37566
## Aubervilliers -793.0032 -124.08051
## Clichy-sous-Bois -243.2493 -114.90485
## Bobigny -465.2779 -108.01736
## Stains -313.7436 -105.88273
## Villetaneuse -104.6940 -99.97363
## Saint-Denis -941.8914 -93.24860
## Pierrefitte-sur-Seine -237.5380 -92.02924
## Villeneuve-Saint-Georges -279.8035 -85.87404
## Dugny -81.3603 -83.81888
The library ineq proposes some functions useful for depicting global inequalities existing in a study area. The Lorenz-curve was developed first by Max O. Lorenz in 1905 as a graphical representation of income distribution. The Lorenz Curve function takes in entry the numerator and the denominator and returns a Lorenz Curve plot; inequality indexes take in entry the ratio (numerator / denominator) and returns econometric indexes of inequality.
par(cex.lab=1)
par(cex.axis=0.75)
par(mar=c(4,4,2,2))
# Lorenz Curve
Lc <- Lc (com$INC, n=com$TH)
plot(Lc,
ylab = "proportion of numerator (total tax income)",
xaxt = 'n',
xlab = "proportion of denominator (households)",
yaxt = 'n')
seq<-seq(0,1,0.1)
axis(side = 1, at = seq,labels = T)
axis(side = 2, at = seq, labels = T)
grid(10, 10, lwd = 1)
# Inequality indexes
Gini<-ineq(com$ratio)
Coeff.Var<-var.coeff(com$ratio, square = FALSE, na.rm = TRUE)
Gini
## [1] 0.2299973
Coeff.Var
## [1] 0.4552654
The curve depicts on its horizontal axis a defined population – e.g., all households – broken down into deciles and ordered from, from left to right on the horizontal axis, from the lower tax income per household to the higher. On the vertical axis of the Lorenz curve is shown the cumulative percentage of tax income.
This plot reveals these following configurations as regard to social household repartition in MGP: * 50 % of the households earnes less than 20 % of the total income. * 50 % of the total income is held by less than 22 % of households.
The analysis of Gini and variation coefficient give a global overview of the degree of inequality. The Gini index is comprised between 0 (equirepartition) and 1 (maximal concentration). But more interesting is analysis of the evolution of these indexes over the time (more equality ? less inequality ?)
This part proposes some graphical representations helping to have an idea regarding inequalities existing at territorial level. In this case, as regard to the average of each Etablissement Public Territoriaux (EPT).
The code below takes in entry the numerator (INC) and the denominator (TH) and returns the territorial deviation indicators (relative and absolute). These indicators are afterwards associated with the input SpatialDataFrame (com.spdf) for displaying on map this deviation.
# Territorial relative deviation calculation
com$mdevrel <- tdev(x = com,
var1 = "INC",
var2 = "TH",
type = "rel",
key = "LIBEPT")
# Territorial absolute deviation calculation
com$mdevabs <- tdev(x = com,
var1 = "INC",
var2 = "TH",
type = "abs",
key = "LIBEPT")
# Territorial deviation in million Euros
com$mdevabsmil <- com$mdevabs / 1000000
# Cartography
# Plot layout
par(mfrow = c(1,1), mar = c(0,0,1.2,0))
layoutLayer(title = "Territorial deviation - Tax income per households, 2013",
sources = "Data source : DGFiP, 2016",
author = "Author : RIATE, 2016",
scale = 5,
frame = TRUE,
col = "black",
coltitle = "white",
bg = "#FFFFFF",
south = FALSE,
extent = com.spdf)
# Plot territories
plot(com.spdf, col = "grey70", border="#EDEDED",lwd=0.25,add=T)
plot(ept.spdf, border = "#1A1A19", lwd = 1, add = T)
# Territorial deviation (relative and absolute) cartography
propSymbolsChoroLayer(spdf = com.spdf, df = com,
var = "mdevabsmil", var2 = "mdevrel",
add = TRUE,
inches = 0.3,
col = carto.pal(pal1 = "blue.pal", n1 = 3,
pal2 = "wine.pal", n2 = 3),
breaks = c(min(com$mdevrel,na.rm=TRUE),
75,90,100,111,133,
max(com$mdevrel,na.rm=TRUE)),
border = "#f0f0f0",
lwd = 0.25,
legend.var.pos = "left", legend.var2.pos = "topleft",
legend.var.title.txt = "Redistribution (Million euros)",
legend.var2.title.txt = "Deviation to the territorial context (100 = Etablissement public territoriaux average)",
legend.var.style = "e")
The map highlight important statistical differences in each EPT in relative terms. The strongest differences in relative terms are located in Paris (opposition between the eastern part and the western part of this EPT) and in the Plaine centrale - Haut Val de Marne EPT (opposition beween the poorest municipalities located near Paris and the ones located in the periphery). Globally, the richest and the poorest EPT (Grand Paris Sud Ouest / Plaine Commune and Territoires des aéroports du Nord Ouest) appear relatively homogeneous statistically. In other EPTs, one municipality appears largely above the average of their EPT of belonging. It is the case in Est Ensemble (Les Lilas), Boucle-Nord 92 (Bois-Colombes), Sud Hauts-de-Seine (Sceaux)
The circles highlight the communes which may have to contribute (red palette) / receive (blue palette) the highest to ensure a perfect equilibrium of income per housold for each Etablissement Public Territoriaux. The 7th Arrondissement of Paris is the commune which should contribute the most to the poorest communes of Paris as regards to the amount of income available in this commune (1,779 billion Euros of income transfer, 58 % of the amount of income in this commune). Marnes-la-coquette (second position) should transfer 38 million Euros to the poorest communes of its EPT of belonging (La Défense). It is relatively low as regards to the 7th arrondissement of Paris, but it corresponds to 52 % of the total amount of income available in this commune.
From the other side of the redistribution, Nanterre, Clichy-sous-bois and the 19th arrondissement of Paris should receive respectivally 1088, 143 and 1926 million euros from the richest communes of their EPT of belonging. It represents respectively 88 %, 68 % and 65 % of the total amount of earned income of their households.The highest redistribution for this study area stands for the 20th arrondissement of Paris (1,926 billion euros, 59 % of its total amount of income).
# Territorial deviation - Top 10 of the potential contributors as regards to their total amount of income
com$mdevabsPerc<- com$mdevabs / com$INC * 100
com<-com[order(com$mdevabsPerc, decreasing = TRUE), ]
com[1:10,c("mdevabsmil","mdevabsPerc")]
## mdevabsmil mdevabsPerc
## Paris 7e Arrondissement 1779.21614 58.39127
## Marnes-la-Coquette 37.85668 51.63157
## Paris 8e Arrondissement 1010.71931 51.40419
## Neuilly-sur-Seine 1468.33529 48.57340
## Paris 16e Arrondissement 3532.67330 48.46214
## Paris 6e Arrondissement 870.36502 47.17065
## Santeny 37.74031 43.38812
## Marolles-en-Brie 47.14636 42.74486
## Vaucresson 119.06443 37.26896
## Le Raincy 116.35420 35.78738
# Territorial deviation - Top 10 of the potential receivers as regards to their total amount of income
com<-com[order(com$mdevabsPerc, decreasing = FALSE), ]
com[1:10,c("mdevabsmil","mdevabsPerc")]
## mdevabsmil mdevabsPerc
## Nanterre -1087.5931 -88.08889
## Clichy-sous-Bois -143.1380 -67.61479
## Paris 19e Arrondissement -1925.8379 -65.44786
## Paris 20e Arrondissement -1958.2712 -59.73389
## Bagneux -295.2509 -58.59873
## Paris 18e Arrondissement -1864.1104 -53.46040
## Champigny-sur-Marne -509.8546 -49.20335
## Gennevilliers -197.9141 -43.87097
## Villeneuve-Saint-Georges -123.2206 -37.81744
## Paris 13e Arrondissement -1241.4815 -36.30654
Another way to explore characteristics of the territorial deviation consists in analysing the statistical dispersion (general deviation) by intermediate level (EPT in this case). The best suited graphical representation for this kind of analysis is certainly the boxplot.
The code below takes in entry the general deviation calculated above and the intermediate levels included in the input dataset (com). It returns a boxplot displaying the statistical parameters (median, mean, 1st and 3rd quartiles, range, minimum and maximum, extraordinary values) allowing to observe the statistical dispersion existing for each intermediate zoning (in this case each EPT). To ease the interpretation and the synthesis of the plot, boxplots are ordered by mean values for each intermediate levels. Moreover, the width of the bars are proportional to the number of territorial units included in each intermediate zoning.
# Layout parameters
par(cex.lab=1)
par(cex.axis=0.75)
par(mar=c(4,4,2,2))
# Boxplot ordered by mean
com$EPT <- with(com, reorder(EPT, gdevrel, mean))
boxplot(com$gdevrel ~ com$EPT,
col = carto.pal(pal1 = "wine.pal", n1 = nlevels(com$EPT)),
ylab = "Global deviation",
varwidth = TRUE,
range = 1,
outline = TRUE,
las = 1)
abline (h = seq(40,290,10), col = "gray70", lwd = 0.25, lty = 3)
abline (h = seq(50,250,50), col = "gray0", lwd = 1, lty = 1)
par(new=TRUE)
boxplot(com$gdevrel ~ com$EPT,
col = carto.pal(pal1 = "wine.pal", n1 = nlevels(com$EPT)),
ylab = "Global deviation",
varwidth = TRUE,
range = 1,
outline = TRUE,
las = 1)
# Plot mean values
xi<- tapply(com$gdevrel,com$EPT,mean)
points(xi,col="#7C0000",pch=19)
# Legend for the boxplot
com$LIBEPT <- as.factor(com$LIBEPT)
legend("topleft",
legend = levels(com$LIBEPT),
pch = 20,
col = carto.pal(pal1 = "wine.pal", n1 = nlevels(com$EPT)),
cex = 0.8,
pt.cex = 1,
title = "Territorial contexts (ordered by mean value of global deviation)")
This plot highlights the statistical dispersion existing in each Etablissement Public Territoriaux. It completes the analyis proposed in the previous map. This boxplot delivers several learnings: Firstly, it confirms globally that wealthier the EPT is, larger the statistical differences between the poorest and the wealthiest territorial units are. In this perspective, Plaine Commune and Territoire des Aeroports (T6 and T7) are quite homogeneous (all the communes of these territories are lagging). On the reverse, the arrondissements of Paris are characterised by strong diffenrences between minimum (index 71) and maximum values (index 90). The same is true with La Defense and Grand Paris Sud Ouest (T4 and T3) with important interquartle values. Secondly, extraordinary values (dots out of the box) concerns poor and wealthy EPT. But for this study area outliers mainly concern maximum values, especially for Paris, La Défense, Grand Paris Sud Ouest, ACEP). Finally, it is interesting to note that Est Ensemble, Grand Paris Est and Sud Hauts-de-Seine (EPT T8, T9 and T2) include communes with very low average income per household, since they are characterised by outliers in the low values.
This part proposes some graphical representations helping to have an idea regarding inequalities existing in a local (or spatial) context. In this case, as regard to the average of contiguous territorial units (contiguity order 1).
The code below takes in entry the numerator (INC) and the denominator (TH) and returns the spatial deviation indicators (relative and absolute). These indicators are afterwards associated with the input SpatialDataFrame (com.spdf) for displaying on map this deviation.
par(mar=c(2,4,0,0))
# Spatial relative deviation calculation
com$ldevrel <- sdev(spdf = com.spdf,
x = com,
spdfid = "DEPCOM",
xid = "DEPCOM",
var1 = "INC",
var2 = "TH",
order = 1,
type = "rel")
# Spatial absolute deviation calculation
com$ldevabs <- sdev(spdf = com.spdf,
x = com,
spdfid = "DEPCOM",
xid = "DEPCOM",
var1 = "INC",
var2 = "TH",
order = 1,
type = "abs")
# Spatial deviation in million Euros
com$ldevabsmil <- com$ldevabs / 1000000
# Cartography
# Plot layout
par(mfrow = c(1,1), mar = c(0,0,1.2,0))
layoutLayer(title = "Spatial deviation - Tax income per households, 2013",
sources = "Data source : DGFiP, 2016",
author = "Author : RIATE, 2016",
scale = 5,
frame = TRUE,
col = "black",
coltitle = "white",
bg = "#FFFFFF",
south = FALSE,
extent = com.spdf)
# Plot territories
plot(com.spdf, col = "grey70", border="#EDEDED",lwd=0.25,add=T)
plot(ept.spdf,border="#1A1A19",lwd=1,add=T)
# Territorial deviation (relative and absolute) cartography
propSymbolsChoroLayer(spdf = com.spdf, df = com,
var = "ldevabsmil", var2 = "ldevrel",
add = TRUE,
inches = 0.3,
col = carto.pal(pal1 = "blue.pal", n1 = 3,
pal2 = "wine.pal", n2 = 3),
breaks = c(min(com$ldevrel,na.rm=TRUE),
75,90,100,111,133,
max(com$ldevrel,na.rm=TRUE)),
border = "#f0f0f0",
lwd = 0.25,
legend.var.pos = "left", legend.var2.pos = "topleft",
legend.var.title.txt = "Redistribution (Million euros)",
legend.var2.title.txt = "Deviation to the spatial context (100 = average of the contiguous territorial units - order 1)",
legend.var.style = "e")
This map highlights local discontinuities existing in the Metropole du Grand Paris. Important local statistical gaps appear in several areas: Saint-Mande and Neuilly-sur-Seine are characterised by the highest score as regards to their respective neighbours (indexes 173 and 156). The central arrondissements of Paris (6e, 7e, 8e) appear also in favourable situation in a local context. Some local “bastions” are revealed in the periphery of Paris, such as Le Raincy (index 153),Sceaux (150),Vaucresson (143), Marnes-la-Coquette (142) or Saint-Maur-des-Fosses (140). Lagging communes are mainly located in the near periphery of Paris: the lower index (61) is observed at Clichy-sous-Bois. Clichy, Puteaux, Saint-Ouen, Bagneux and Aubervilliers are also in a lagging situation: their average income per household stand around 30-40 % below their respective neighbourhood.
Looking into local redistributions, the most part of the redistribution in absolute terms concerns the arrondissements of Paris and their contiguous communes in the north-west of Paris: the 16th arrondissement of Paris should contribute to 2 billion euros; the 15th arrondissement should receive 1,5 billion euros to ensure a local equilibrium.
But as regard to the available income mass (table below), it is Saint-Mande (260 million euros, 42 % of the total income of the commune), Neuilly-sur-Seine (1 billion euros, 36 %) and the 6th arrondissement (650 million, 35 %) which should contribute to their respective poorest neighbours. On the other side of the redistribution, Clichy-sous-bois (138 million euros, 65 %), Clichy (521 million, 62 %), Puteaux (535 million, 58 %) and Saint-Ouen (311 million, 56 %) should receive the most. Interesting is to note that the local redistribution implies a lowest share of their respective income for the wealthiest communes (around 35 %) comparing to the poorest one (which should receive more than 50 % of their current available income).
# Spatial deviation - Top 10 of the potential contributors as regards to their total amount of income
com$ldevabsPerc<- com$ldevabs / com$INC * 100
com<-com[order(com$ldevabsPerc, decreasing = TRUE), ]
com[1:10,c("ldevabsmil","ldevabsPerc")]
## ldevabsmil ldevabsPerc
## Saint-Mande 260.10243 42.35190
## Neuilly-sur-Seine 1090.39208 36.07081
## Paris 6e Arrondissement 650.36361 35.24736
## Le Raincy 112.64658 34.64702
## Paris 7e Arrondissement 1052.81249 34.55177
## Sceaux 187.23855 33.59400
## Gournay-sur-Marne 45.78709 32.77097
## Coubron 25.56596 31.16313
## Vaucresson 95.59513 29.92272
## Marnes-la-Coquette 21.91940 29.89520
# Spatial deviation - Top 10 of the potential receivers as regards to their total amount of income
com<-com[order(com$ldevabsPerc, decreasing = FALSE), ]
com[1:10,c("ldevabsmil","ldevabsPerc")]
## ldevabsmil ldevabsPerc
## Clichy-sous-Bois -138.01472 -65.19469
## Clichy -521.27310 -62.11944
## Puteaux -535.70339 -58.26476
## Saint-Ouen -311.73019 -56.39945
## Bagneux -249.46913 -49.51238
## Aubervilliers -303.14284 -47.43249
## Bonneuil-sur-Marne -84.77851 -46.04200
## Nanterre -556.15780 -45.04563
## Champigny-sur-Marne -456.19566 -44.02501
## Gennevilliers -182.72267 -40.50353
Spatial autocorrelation reveals the absence of independance between geographical observations. Thus, spatialised indicators are often subject to spatial dependances (or spatial interactions), which are even stronger than spatial localisations are closer. Autocorrelation measures (Moran, Geary, Lisa indexes) allows estimating the spatial dependance between the values of a same indicator at several locations of a given study area.
The figure displayed below consists in evaluating this spatial autocorrelation by a plot crossing the spatial deviation (Y axis) and global deviation (X axis) values. It includes also a regression line, the equation and the R-Squared of this statistical model. On top of that, colours are affected to depict the territorial level belonging, following the logic of the MTA framework.
For each territorial unit of the study area, this plot crosses the values of the global deviation on absissa axis with the values of the local deviation on ordinates axis. This chart is interesting as it reveals spatial dependancy, e.g. spatial organisation of a phenomena. It provides some interesting inputs for answering to basic questions, such as: * Are territorial units globally advantaged also advantaged at local level (and reciprocally) ? * Is it possible to detect special situations as regard to the global trend, meaning the existence of “local bastions” in favourable or lagging situations ?
par(cex.lab=1)
par(cex.axis=0.75)
par(mar=c(4,4,2,2))
# Dot colours by EPT
colours <- c("#fb6a4a","#74c476","#74a9cf",
"#045a8d","#006d2c","#c7e9c0",
"#bcbddc","#fcbba1","#3690c0",
"#d9f0a3","#9ecae1","#de2d26")
# Assign correctly colours
com<-com[order(com$DEPCOM, decreasing = FALSE), ]
com$col <- as.factor(com$LIBEPT)
com$LIBEPT <- as.factor(com$LIBEPT)
levels(com$col) <- colours
# Spatial autocorrelation
lm <- summary.lm(lm(ldevrel ~ gdevrel, com))
# Plot spatial autocorrelation
plot(com$gdevrel,com$ldevrel,
ylab = "Local deviation",
ylim = c(50,260),
xlab = "Global deviation",
xlim = c(50,260),
pch = 20,
col = as.vector(com$col))
abline((lm(com$ldevrel ~ com$gdevrel)), col = "red", lwd =1)
# Specify linear regression formula and R-Squared of the spatial autocorrelation on the plot
text(140,65, pos = 4, cex = 0.8,
labels = (paste("Local Deviation =", round(lm$coefficients["gdevrel","Estimate"], digits = 3),
"* (Global Deviation) +", round(lm$coefficients["(Intercept)","Estimate"],
digits = 3))))
text(140,60, pos = 4, cex = 0.8,
labels = (paste("R-Squared =", round(summary(lm(ldevrel~gdevrel, com ))$r.squared, digits = 2))))
abline (h = seq(40,290,10), col = "gray70", lwd = 0.25, lty = 3)
abline (h = seq(50,250,50), col = "gray0", lwd = 1, lty = 1)
abline (v = seq(40,290,10), col = "gray70", lwd = 0.25, lty = 3)
abline (v = seq(50,250,50), col = "gray0", lwd = 1, lty = 1)
# Legend for territorial level
legend("topleft",
legend = levels(com$LIBEPT),
pch = 20,
col = colours,
cex = 0.5,
pt.cex = 1,
title = "Territorial context")
The output of the linear model of spatial autocorrelation reveals that the hypothesis of independance is rejected at a probability below than 0.0001. It means that, “everything is related to everything else, but near things are related than distant things” (Tobler, 1970). However, the R-squared of the relation (0.42) suggests that this statistical relation includes outliers very far from the linear regression, which may be interesting to analyse. On the plot, it is possible to visualise then communes, which mainly belong to the Seine-Saint-Denis departement (Grand-Paris-Est/Est-everything is related to everything else, but near things are related than distant things)
More empirically, the chart can also be used to examine the situation of outliers and exceptional units out of the cloud of points. The code below takes in entry the statistical residuals of the spatial autocorrelation calculated in the previous section. Then the residuals are standardised. The code returns a plot displaying the standardised residuals according to the value of the local deviation. Exceptional values (calculated using the T-Student value) are labeled on the resulting plot.
par(cex.lab=1)
par(cex.axis=0.75)
par(mar=c(4,4,2,2))
# Standardised residual calculation
lm <- lm(ldevrel ~ gdevrel, com)
res.standard <- rstandard(lm)
#risk alpha = 0.1
alpha <- 0.1
# Calculation of the threshold using T-Student at (n-p-1) degrees of freedom
seuil.standard <- qt(1-alpha/2, nrow(com) - 1)
# Plot residuals
plot(com$ldevrel,res.standard,
xlab = "Local deviation", cex.lab = 0.8,
xlim = c(60,180),
ylab = "Standardised residuals of spatial autocorrelation", cex.lab = 0.8,
pch = 20,
col = as.vector(com$col),
cex.axis =0.8)
# Adding thresholds
abline(h=-seuil.standard, col = "red")
abline(h=+seuil.standard, col = "red")
abline(h=0, col = "red")
# Detecting exceptional values and labeling them on the plot
ab.standard <- com[res.standard < -seuil.standard | res.standard > +seuil.standard,]
for (i in 1:nrow(ab.standard)){
# Take the territorial units listing below and above the threshold
communes <- row.names(ab.standard)[i]
# Plot the residual names
text(com[communes,"ldevrel"],res.standard[communes],communes,cex =0.5, pos=4)
}
abline (v = seq(50,200,10), col = "gray70", lwd = 0.25, lty = 3)
abline (v = seq(50,200,50), col = "gray0", lwd = 1, lty = 1)
# Plot the legend (territorial zoning)
legend("topleft",
legend = levels(ab.standard$LIBEPT),
pch = 20,
col = colours,
cex = 0.5,
pt.cex = 1,
title = "Territorial context")
This plot highlight exceptional situations, all things being equal to their situation in a global context. It depicts firstly the communes which are characterised by a significant lagging situation locally as regards to their average income per household (Puteaux, Clichy, Clichy-sous-Bois, Saint-Ouen, Issy-les-Moulineaux, Suresnes, Paris 1st and 15th arrondissements). Secondly, this plot reveals also communes in a significantly wealthier than their neighbourhoods (Saint-Mande, Le Raincy, Coubron, Gournay-sur-Marne, Bry-sur-Marne, Saint-Maur-des-Fosses, Rungis, Sceaux). This plot is especially useful to highlight poles of wealth and poles of poverty in a local context.
In the example above, a contiguity criteria (order = 1) has been chosen to evaluate inequalities at local level. This choice has been decided arbitrarily for a convenient purpose (it is easier to conceptualise the average deviation of territorial units touching themselves). But results might be significantly different using other criteria for measuring the spatial deviation.
In fact, the values of this deviation are dependant from some criteria: * the intrinsic inequalities existing in the study area (the same than for the other deviations). * the average size of territorial units (for spatial criteria): a territorial unit with a surface below 1 km square will certainly have neighbours at a threshold of 1000 m. It is no more the case for a territorial unit with a surface of 20 km square.
* the spatial extent of the study area: the spatial criteria will not be the same for a local case study, such as the communes of the MGP or for wider case-study (Europe for instance).
Thus, it is important for have a global overview of the the effects of the neighbourhood parameters (order and dist parameters) on the calculation of the spatial deviation. It is the aim of the plot below. It takes in entry a dataframe computing desired distance or contiguity levels. Using the local deviation function (localDev), it returns a plot showing the amount of redistribution as regard to the distance or the contiguity criteria.
par(cex.lab=1)
par(cex.axis=0.75)
par(mar=c(4,4,2,2))
# Set the targeted distances for measuring spatial deviation
dfSpa <- data.frame(dist = seq(0,35000,by=500), ineq = NA)
# Calculation of spatial deviations in absolute terms for all the distances retained
spat <- function(x){
ldevabs <- sdev(spdf = com.spdf,
x = com,
spdfid = "DEPCOM",
xid = "DEPCOM",
var1 = "INC",
var2 = "TH",
dist = x[1],
type = "abs")
ldevabspos <- ldevabs[ldevabs>0]
sum(ldevabspos)
}
dfSpa$ineq <- apply(dfSpa, 1, spat)
# Convert results in million Euros and km
dfSpa$ineq <- dfSpa$ineq / 1000000
dfSpa$dist <- dfSpa$dist / 1000
dfSpa[is.na(dfSpa)] <- 0
# Set the targeted contiguity order for measuring spatial deviation
dfOrder <- data.frame(order = seq(0,20,by=1), ineq = NA)
# Calculation of spatial deviations in absolute terms for all the contiguities retained
spat <- function(x){
ldevabs <- sdev(spdf = com.spdf,
x = com,
spdfid = "DEPCOM",
xid = "DEPCOM",
var1 = "INC",
var2 = "TH",
order = x[1],
type = "abs")
ldevabspos <- ldevabs[ldevabs>0]
sum(ldevabspos)
}
dfOrder$ineq <- apply(dfOrder, 1, spat)
# Convert results in million Euros
dfOrder$ineq <- dfOrder$ineq / 1000000
dfOrder[is.na(dfOrder)] <- 0
# Combined plot - Plot 1: Euclidian Distance
plot.new()
plot.window(xlim=c(0,22500),ylim=c(0,35), xaxs="i", yaxs="i")
axis(1, pos=0, xlim=c(0,22500))
axis(2, col = '#488b37', pos=0, ylim=c(0,35))
abline (v = seq(0,22000,1000), col = "gray30", lwd = 0.25)
abline (h = seq(0,35,5), col = "#488b37", lwd = 0.25)
lines(dfSpa$dist ~ dfSpa$ineq,type='b',col='#488b37',lwd=0.25, lty = 1, pch = 20)
title(xlab = "Mass of numerator to redistribute required to reach the equilibrium (million Euros)")
mtext("Neighbourhood: Euclidian distance (km)", col = "#488b37", side = 2,line = 2)
# Adding plot 2 : contiguity
plot.window(xlim=c(0,22500),ylim=c(0,20),xaxs="i", yaxs="i")
axis(4, col ='#7a378b')
abline (h = seq(0,20,5), col = "#7a378b", lwd = 0.25, lty = 1)
lines(dfOrder$order~dfOrder$ineq,type='b',col='#7a378b',lwd=0.25, lty = 1, pch = 20)
mtext("Neighbourhood: Contiguity order", side = 4, col = "#7a378b")
#title for the graph
title(main="Numerator redistribution as regards to spatial and contiguity parameters")
box(which = "plot")
If the contiguity order or spatial distance corresponds to 0, nothing happen: each territorial unit is compared to itself and it implies consequently no spatial deviation. Reversely, if these parameters are too important (above 31 km or 12 contiguity orders in the case of the MGP), the spatial deviation takes for the calculation all the territorial units of the study area. In this case the values of the spatial deviation corresponds exactly to the global deviation.
In the plot displayed above, we can see that a contiguity of 1 order (chosen for this vignette) corresponds more or less 3,5 kilometers in euclidian distance (approximatively 11 billion Euros of income redistribution).
Out of these mathematical considerations related to the characteristics of the study area and the size of the elementary territorial units, it is important to remind that the choice of the appropriate threshold must make sense from a thematic point of view (does a neighbourhood of 5 km mean something ? Is a distance of 20 minutes by car more appropriated?)
All the sections above provide a high amount of information regarding territorial inequalities and potential redistributions at global, territorial and spatial contexts. This part proposes some useful plots to synthetise all this information, using the synthesis functions of the MTA package.
The three relative positions about contexts can be summarised in a synthetic typology. The elementary units can be classified in eight classes according to their three relative positions and one threshold.
Thus, the R function “synthesis 3” takes in entry all the elements required for calculating the three deviations: A DataFrame including the numerator and the denominator for all the deviations, the “key” argument for the territorial deviation calculation and the dist/order/mat arguments for the spatial deviation calculation.
This function proposes afterwards to specify which point of view the synthesis analysis will focus on: the first “Criterion” argument (superior) shows whether the point of view is to underline the territorial units whose ratio is greater than (superior = TRUE), or to underline the territorial units below (superior = FALSE) a given threshold (threshold argument. This choice depends on the studied indicator and the aim of the analysis (cf below).
Following the HyperAtlas framework inputs, the mst function returns useful elements to synthetise the value of the three deviations: * 4 fundemental vectors are returned: the ratio (ratio), the global (gdevrel), territorial (tdevrel) and spatial (ldevrel) relative deviations.
The position of the three relative deviation according to the threshold and the superior arguments specified in entry: tmp1 for the global deviation (1 is true, 0 else), tmp2 for the territorial deviation (2 is true, 0 else) and tmp3 for the spatial deviation (4 is true, 0 else).
First of all, we aim at highlighting communes of the MGP in favorable situation. The mst function below takes ‘125’ for the threshold argument and ‘TRUE’ for the superior argument. Consequently, the typology will focus on the communes above 25% of the average for the three deviations. The typology is afterwards ploted using the cartography package.
par(mar=c(2,4,0,0))
# Compute the synthesis DataFrame (relative deviations)
mst <- mst(spdf = com.spdf, x = com, spdfid = "DEPCOM", xid = "DEPCOM",
var1 = "INC", var2 = "TH", dist = NULL, key = "EPT", order = 1,
mat = NULL, threshold = 125, superior = TRUE)
# Plot layout
par(mfrow = c(1,1), mar = c(0,0,1.2,0))
layoutLayer(title = "Synthesis / 3 contexts - Tax income per households, 2013",
sources = "Data source : DGFiP, 2016",
author = "Author : RIATE, 2016",
scale = 5,
frame = TRUE,
col = "black",
coltitle = "white",
bg = "#FFFFFF",
south = FALSE,
extent = com.spdf)
# Colours Typology and legend layout
colours <- c("#f0f0f0", "#fdc785","#ffffab","#fba9b0",
"#addea6","#ffa100","#fff226","#e30020")
# Plot typology map
typoLayer(spdf = com.spdf, df = mst, var = "mst",
add = TRUE,
border = "#D9D9D9",
lwd=0.25,legend.values.order = 0:7,
col = colours,
legend.pos = "n")
# Plot territorial level
plot(ept.spdf,border="#252525",lwd=0.5,add=T)
# Plot the legend
rVal<-c(" . . . ","[X] . . ",
" . [X] . ","[X] [X] . ",
" . . [X]","[X] . [X]",
" . [X] [X]","[X] [X] [X]")
legendTypo(col = colours, categ = rVal,
title.txt = "Global, Territorial and Spatial deviations above 125 %",
nodata = FALSE)
This map highlights the communes largely above the average of the three deviations (coloured in red). They are mainly located in the West part of Paris and of the MGP. Some isolated communes appear also locally in a favorable situation in the East Part of the MGP.
More precisely (extract of the tables below), 11 communes are characterised by an index of average income per household above 125% on the three contexts (class 7, red colour). It corresponds to 4 arrondissements in Paris (6e, 7e, 8e and 16e) and the communes of Marnes-la-Coquette, Neuilly-sur-Seine, Sceaux, Vaucresson, Marolles-en-Brie, Saint-Mande and Santeny.
13 communes can be considered as “globally” advantaged (above 125% only in a global and/or in a global and in territorial contexts, coloured in light orange and in pink). It corresponds to the central arrondissements in Paris (1e, 2e, 4e, 9e) and other communes in favorable situation close to wealthier communes (Boulogne-Billancourt, Saint-Cloud, etc).
8 communes can be considered as “locally” advantaged (index above 125% only in a spatial context and/or in a spatial and a territorial context, coloured in green and yellow). These local poles of wealth are mainly located in the periphery of the MGP area (Le Raincy, Rungis, Coubron, etc), closed to poorer communes.
# Communes in favorable situation for the three contexts
subset(mst, mst == 7, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## Paris 6e Arrondissement 226.4305 189.2887 154.4339 7
## Paris 7e Arrondissement 287.4920 240.3342 152.7925 7
## Paris 8e Arrondissement 246.1566 205.7791 126.4014 7
## Paris 16e Arrondissement 232.1047 194.0321 138.1793 7
## Marnes-la-Coquette 274.2614 206.7464 142.6436 7
## Neuilly-sur-Seine 269.3935 194.4519 156.4231 7
## Sceaux 165.7067 154.8138 150.5888 7
## Vaucresson 220.8475 159.4107 142.6996 7
## Marolles-en-Brie 143.5822 174.6568 142.2428 7
## Saint-Mande 151.7934 142.8341 173.4663 7
## Santeny 145.2137 176.6414 133.9427 7
# Communes in favorable situation in a global context or in a global and in an territorial contexts
subset(mst, mst == 1 | mst == 3, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## Paris 1er Arrondissement 165.4262 138.29105 90.43753 3
## Paris 2e Arrondissement 125.4070 104.83630 103.42912 1
## Paris 4e Arrondissement 138.5607 115.83230 114.88557 1
## Paris 9e Arrondissement 142.4046 119.04570 119.33353 1
## Paris 17e Arrondissement 144.2828 120.61579 99.37917 1
## Boulogne-Billancourt 139.6822 105.29659 89.95896 1
## Garches 176.0366 127.06560 108.12517 3
## Levallois-Perret 133.7036 96.50905 98.09806 1
## Meudon 127.8880 96.40575 99.10597 1
## Rueil-Malmaison 140.6932 101.55429 112.46847 1
## Saint-Cloud 192.5684 138.99850 109.47437 3
## Sevres 144.8624 109.20161 100.19356 1
## Ville-d'Avray 185.9822 140.19896 113.65608 3
# Communes in favorable situation in a spatial context or in a spatial and a territorial context
subset(mst, mst == 4 | mst == 6, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## La Garenne-Colombes 123.07336 88.83603 126.2585 4
## Coubron 99.95287 128.15310 145.2710 6
## Gournay-sur-Marne 116.92059 149.90802 148.7453 6
## Le Raincy 121.46348 155.73263 153.0152 6
## Bry-sur-Marne 120.05890 112.97272 139.8264 4
## Charenton-le-Pont 114.80652 108.03034 128.4887 4
## Rungis 113.74930 153.41339 135.1303 6
## Vincennes 121.96874 114.76984 127.5193 4
The second step consists in analysing the reverse situation: the communes in lagging situation for this indicator. Thus, the mst function takes ‘80’ for the threshold argument and ‘FALSE’ for the superior argument. This typology will specify the communes situated below 20% of the average for the global and/or the territorial and/or the spatial contexts.
par(mar=c(2,4,0,0))
# Compute the synthesis DataFrame (relative deviations)
mst <- mst(spdf = com.spdf, x = com, spdfid = "DEPCOM", xid = "DEPCOM",
var1 = "INC", var2 = "TH", dist = NULL, key = "EPT", order = 1,
mat = NULL, threshold = 80, superior = FALSE)
# Plot layout
par(mfrow = c(1,1), mar = c(0,0,1.2,0))
layoutLayer(title = "Synthesis / 3 contexts - Tax income per households, 2013",
sources = "Data source : DGFiP, 2016",
author = "Author : RIATE, 2016",
scale = 5,
frame = TRUE,
col = "black",
coltitle = "white",
bg = "#FFFFFF",
south = FALSE,
extent = com.spdf)
# Colours Typology and legend layout
colours <- c("#f0f0f0", "#fdc785","#ffffab","#fba9b0",
"#addea6","#ffa100","#fff226","#e30020")
# Plot typology map
typoLayer(spdf = com.spdf, df = mst, var = "mst",
add = TRUE,
border = "#D9D9D9",
lwd=0.25,
col = colours,
legend.values.order = 0:7,
legend.pos = "n")
# Plot territorial level
plot(ept.spdf,border="#252525",lwd=0.5,add=T)
# Plot the legend
rVal<-c(" . . . ","[X] . . ",
" . [X] . ","[X] [X] . ",
" . . [X]","[X] . [X]",
" . [X] [X]","[X] [X] [X]")
legendTypo(col = colours, categ = rVal,
title.txt = "Global, Territorial and Spatial deviations below 80%",
nodata = FALSE)
The map shows the communes in difficulty regarding the income repartition in the MGP. Interesting is to note that all the territories of the Plaine Commune, Territoire des Aéroports EPT are below the threshold of 80 % for at least the global context. Most of the communes of EPT of Est Ensemble, Grand-Paris-Est, Val de Bièvres are in the same situation.
The communes in lagging situation for the three contexts (class 7, in red) are located in several areas of the MGP (North-West, East). All are located not in the immediate periphery of Paris (none of these communes are contiguous to Paris). It concerns precisely 6 communes: Bagneux, Genevilliers, Nanterre, Clichy-sous-Bois, Bonneuil-sur-Marne and Champigny-sur-Marne. Clichy-sous-Bois appears especially in a dramatic situation (indexes 47, 60 and 61 for the global, territorial and spatial deviations).
Most of the communes of Seine-Saint-Denis and Val-de-Marne are characterised by a signficiant lagging situation globally but not locally (classes 1 and 3, in light orange and pink). It is mainly due to the fact that the value of the index is too low to introduce significant gaps locally.
4 communes are characterised by low indexes in a local context, but not in a global one. It corresponds to the communes located in the immediate neighourhood of the wealthiest communes of the MGP (classes 4 and 6, in green and yellow): Paris 15e arrondissement, Suresnes, Puteaux and in a less extent Malakoff.
# Communes in lagging situation for the three contexts
subset(mst, mst == 7, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## Bagneux 67.48864 63.05221 66.88409 7
## Gennevilliers 54.82245 69.50673 71.17259 7
## Nanterre 73.65662 53.16635 68.94382 7
## Clichy-sous-Bois 46.53222 59.66061 60.53463 7
## Bonneuil-sur-Marne 62.52923 76.06206 68.47345 7
## Champigny-sur-Marne 71.22660 67.02263 69.43239 7
# Communes in lagging situation in a global context or in a global and in an territorial contexts
subset(mst, mst == 1 | mst == 3, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## Paris 18e Arrondissement 77.94961 65.16339 88.01680 3
## Paris 19e Arrondissement 72.30180 60.44200 93.29097 3
## Paris 20e Arrondissement 74.88817 62.60412 89.40371 3
## Athis-Mons 76.95882 103.79418 93.35632 1
## Viry-Chatillon 76.95620 103.79063 91.33629 1
## Villeneuve-la-Garenne 60.35237 76.51784 106.67753 3
## Aulnay-sous-Bois 66.08967 105.22801 101.99724 1
## Bagnolet 61.55727 98.78661 86.03611 1
## Le Blanc-Mesnil 58.80947 93.63646 96.33714 1
## Bobigny 48.07291 77.14702 85.68773 3
## Bondy 58.34623 93.63355 91.99688 1
## Le Bourget 60.57356 96.44525 108.12064 1
## La Courneuve 43.98008 86.37262 84.95108 1
## Drancy 60.06248 95.63151 109.03903 1
## Dugny 54.40138 86.61790 103.65299 1
## Epinay-sur-Seine 57.19519 112.32583 99.05301 1
## L'Ile-Saint-Denis 55.29472 108.59347 84.24867 1
## Livry-Gargan 76.77771 98.43942 109.94925 1
## Montfermeil 68.85011 88.27517 98.58827 1
## Montreuil 67.11617 107.70748 84.64646 1
## Neuilly-sur-Marne 68.26555 87.52568 83.86710 1
## Noisy-le-Grand 78.40900 100.53095 92.41012 1
## Noisy-le-Sec 60.20215 96.61191 96.83941 1
## Pantin 58.90333 94.52758 94.88751 1
## Les Pavillons-sous-Bois 76.82156 98.49564 104.28169 1
## Pierrefitte-sur-Seine 52.07540 102.27105 101.92442 1
## Le Pre-Saint-Gervais 68.06338 109.22756 93.95816 1
## Romainville 61.62464 98.89471 98.47006 1
## Rosny-sous-Bois 70.87220 90.86776 97.08786 1
## Saint-Denis 51.74682 101.62574 84.70774 1
## Sevran 58.24088 92.73116 86.91948 1
## Stains 48.57134 95.38941 97.12789 1
## Tremblay-en-France 73.47441 116.98598 103.87577 1
## Vaujours 78.65642 100.84817 112.98827 1
## Villepinte 66.19972 105.40323 100.39743 1
## Villetaneuse 50.00659 98.20811 94.19422 1
## Alfortville 69.61148 84.67707 94.50609 1
## Arcueil 79.09760 106.67874 98.08105 1
## Boissy-Saint-Leger 69.88712 85.01237 80.59297 1
## Chevilly-Larue 75.69129 102.08466 101.62396 1
## Choisy-le-Roi 69.33863 93.51683 103.51923 1
## Creteil 70.57155 85.84492 83.49890 1
## Le Kremlin-Bicetre 79.70331 107.49566 100.04895 1
## Limeil-Brevannes 76.44334 92.98751 107.04067 1
## Orly 61.57899 83.05143 89.32049 1
## Valenton 55.89799 75.38948 82.97421 3
## Villejuif 69.96085 94.35602 96.83474 1
## Villeneuve-le-Roi 72.12658 97.27694 106.02387 1
## Villeneuve-Saint-Georges 53.79988 72.55976 85.01630 3
## Vitry-sur-Seine 63.07902 85.07452 89.63338 1
## Argenteuil 64.76244 82.10915 94.89498 1
# Communes in lagging situation in a spatial context or in a spatial and a territorial context
subset(mst, mst == 4 | mst == 6, select = c(gdevrel, tdevrel, sdevrel, mst))
## gdevrel tdevrel sdevrel mst
## Paris 15e Arrondissement 124.15040 103.78578 79.68117 4
## Malakoff 86.37377 80.69590 75.80961 4
## Puteaux 104.63901 75.52987 63.18526 6
## Suresnes 124.55926 89.90857 78.31239 4
The synthesisAbs function takes in entry all requested parameters to compute the three deviations, as specified above. It returns a dataframe summarizing the values of absolute deviations, e.g. how much should be retributed from the poorest to the wealthiest territorial units to ensure a perfect equilibrium of the ratio for the three contexts. Results are expressed both in absolute values (mass of numerator, amount of tax reference in Euros in this case) and as a share of the numerator (x % of the numerator that should be redistributed).
# Compute the synthesis DataFrame (absolute deviations)
mas(spdf = com.spdf, x = com, spdfid = "DEPCOM", xid = "DEPCOM",
var1 = "INC", var2 = "TH", dist = NULL, key = "EPT", order = 1,
mat = NULL)
## INC share.INC
## gdev 22147378212 16.328570
## tdev 15707030012 11.580302
## sdev 10740420155 7.918576
## num 135635751601 100.000000
For the MGP area, it is 22 billion Euros that should be redistributed from the communes in favorable situation to the communes in lagging situation. It corresponds to 16.3 % of the total mass of income declared to the taxes. If a policy option consists in ensuring a reequilibrium at an intermediate territorial level, such as the Etablissements Publics Territoriaux, it is 15 billion Euros that should be transfered (11.6 % of the income mass). If a solution chosen consists in limiting territorial discontinuities in a local context (avoid local poles of wealth or of poverty), it is 10 billion Euros that should be redistribued (7.9 % of the income mass). Ensuring an equilibrium of income in these three territorial contexts are obvioulsy not credible policy options, but it gives some references to monitor the magnitude of territorial inequalities existing in a given study area.
The functionalities provided by the MTA package is especially useful to enhance territorial inequalities in several perspectives. This example, applied to the Metropole du Grand Paris provides some interesting insights to understand challenges raised by income inequalities in this new governance structure at the scale of the parisian metropolitan area. Inputs provided by this vignette are quite simples and aims at using all the functionalities of the MTA package, by suggesting some adapted graphical representations derived mainly from the Cartography package. We consider also that it provides useful inputs for territorial monitoring and observation - a necessary step before policy decision making (which solutions for reducing income inequalities in a given area?)
It is also important to remind that the aim of this vignette is not to provide a global picture of territorial inequalities existing in the MGP. To have this ambition, further analysis should be led for interrogating other dimensions of the inequalities, such as:
That being said, MTA analysis provide a useful methodological base to explore several dimensions of territorial inequalities measures (Ysebaert, 2012) and applications within a policy context:
Simulation of policy options: it is quite frequent that indicators constitute a basis for implementing policy measures to reduce territorial disparities. The case of the regional policy of the EU is a good example taking into account that most of the funding goes to regions below the statistical threshold of 75 % of the average of the European Union for the GDP per capita criteria at NUTS2 level. The functionalities of the MTA package allow in that perspective to simulate quickly the consequences of the use of several alternatives for guiding the funds allocation.
Highlight contradictions: the fact that MTA functionalities are based on 3 possible measures of territorial inequalities (general, territorial, spatial deviations) leads the analyst or the policy maker to think about several theories regarding the governance of territorial inequalities. A territorial unit situated in a lagging situation at general level and in a favourable situation at local level must not be considered in the same way than a territorial unit characterised by a lagging situation both at general and local levels.