Delta | R Documentation |
The Delta index is a specific application of dissimilarity
index DIDuncan
which simply measures the dissimilarity
between the spatial distribution of a group and the spatial
distribution of available land. It can be interpreted as the share of group
that would have to move to achieve uniform density over all spatial units.
The function can be used in two ways: to provide an area vector or
a external geographic information source (spatial object or shape file).
Delta(x, a = NULL, spatobj = NULL, folder = NULL, shape = NULL)
x |
an object of class matrix (or which can be coerced to that class), where each column represents the distribution of a group within spatial units. The number of columns should be greater than 1 (at least 2 groups are required). You should not include a column with total population, because this will be interpreted as a group. |
a |
a numeric vector containing spatial unit areas |
spatobj |
a spatial object (SpatialPolygonsDataFrame) with geographic information |
folder |
a character vector with the folder (directory) name indicating where the shapefile is located on the drive |
shape |
a character vector with the name of the shapefile (without the .shp extension). |
A numeric vector containing the Delta index values for each group
Duncan O. D., Cuzzoert and Duncan B. (1961) Problems in analyzing areal data. Statistical geography, Glencoe, Illinois: The free press of Glencoe
Absolute Concentration Index: ACO
Relative Concentration Index: RCO
x <- segdata@data[ ,1:2]
ar <- area(segdata)
foldername <- system.file('extdata', package = 'OasisR')
shapename <- 'segdata'
Delta(x, a = ar)
Delta(x, spatobj = segdata)
Delta(x, folder = foldername, shape = shapename)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.