variogram: Empirical Variogram from Spatial Data

Description Usage Arguments Details Value Author(s) References Examples

Description

Compute sample (empirical) variogram from spatial data. The function returns a binned variogram and a variogram cloud.

Usage

1
Variogram(x, width, cutoff,...) 

Arguments

x

a spatial object (RasterLayer or SpatialPointsDataFrame or SpatialPolygonsDataFrame)

width

the lag size (width of subsequent distance intervals) into which cell pairs are grouped for semivariance estimates. If missing, the cell size (raster resolution) is assigned.

cutoff

spatial separation distance up to which cell pairs are included in semivariance estimates; as a default, the length of the diagonal of the box spanning the data is divided by three.

...

Additional arguments including zcol (when x is Spatial* object, specifies the name of the variable in the dataset; longlat (when x is Spatial* object, spacifies whether the dataset has a geographic coordinate system; s (only when x is a Raster object, it would be useful when the dataset is big, so then by specifying s, the calculation would be based on a sample with size s drawn from the dataset, default is NULL means all cells should be contributed in the calculations)

Details

Variogram is a graph to explore spatial structure in a single variable. A variogram summarizes the spatial relations in the data, and can be used to understand within what range (distance) the data is spatially autocorrelated.

Value

Variogram

an object containing variogram cloud and the variogram within each distance interval

Author(s)

Babak Naimi naimi.b@gmail.com

http://r-gis.net

References

Naimi. B. et al. (under review) ELSA: An Entropy-based Local indicators of Spatial Association, Geographical Analysis;

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
file <- system.file('external/dem_example.grd',package='elsa')
r <- raster(file)
plot(r,main='a continuous raster map')

en <- Variogram(r, width=2000)

plot(en)

## End(Not run)

elsa documentation built on May 2, 2019, 4:49 p.m.

Related to variogram in elsa...