Declustering

Declustered statistics are statistics that make use of geospatial coordinates in an attempt to correct potential sampling bias:

The following statistics have geospatial semantics:

Statistics.meanMethod
mean(data, v)
mean(data, v, s)

Declustered mean of geospatial data. Optionally, specify the variable v and the block side s.

source
Statistics.varMethod
var(data, v)
var(data, v, s)

Declustered variance of geospatial data. Optionally, specify the variable v and the block side s.

source
Statistics.quantileMethod
quantile(data, v, p)
quantile(data, v, p, s)

Declustered quantile of geospatial data at probability p. Optionally, specify the variable v and the block side s.

source

A histogram with geospatial semantics is also available where the heights of the bins are adjusted based on the coordinates of the samples:

GeoStatsBase.EmpiricalHistogramType
EmpiricalHistogram(sdata, var, [s]; kwargs...)

Spatial histogram of variable var in spatial data sdata. Optionally, specify the block side s and the keyword arguments kwargs for the fit(Histogram, ...) call.

source