spvar | R Documentation |
spatial variance
spvar(x, wt, method = c("cpp", "r"))
x |
A numerical vector . |
wt |
The spatial weight matrix. |
method |
(optional) The method for calculating spatial variance, which can be chosen as
either |
The spatial variance formula is
\Gamma = \frac{\sum_i \sum_{j \neq i} \omega_{ij}\frac{(y_i-y_j)^2}{2}}{\sum_i \sum_{j \neq i} \omega_{ij}}
A numerical value.
gzma = sf::read_sf(system.file('extdata/gzma.gpkg',package = 'sdsfun'))
wt1 = inverse_distance_swm(gzma)
spvar(gzma$PS_Score,wt1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.