calc_MoransI | R Documentation |
Calculate Moran's I
calc_MoransI(
object,
df_neighbours = NULL,
spatial_autocorrelation = TRUE,
compute_pseudo_p = FALSE,
tested_moransI = NULL,
n_permutations = 999,
ignore_borders = FALSE,
return_intermediate_values = FALSE
)
object |
RLum.Results or numeric (required) containing
the values of the grains of one. Should have length 100; can contain |
df_neighbours |
data.frame (with default): a data frame with 3
columns ( |
spatial_autocorrelation |
logical (with default): whether spatial
autocorrelation should be considered in the computation of Moran's I
( |
compute_pseudo_p |
logical (with default): whether a pseudo p-value
should be computed ( |
tested_moransI |
numeric (with default): The value of Moran's I to
be tested against when computing the pseudo p-value. If |
n_permutations |
integer (with default): number of random
permutations tested to calculate the fraction which is the pseudo p
(defaults to 999). Influences the calculation speed, which will have
impact in case of large scale simulation loops. Ignored if |
ignore_borders |
logical (with default): whether only grain
locations that do not lie on the border of the disc should be considered
( |
return_intermediate_values |
logical (with default): whether the
function should return a list with several intermediate calculation results
(defaults to |
Case of no spatial autocorrelation
Perhaps a bit counter-intuitive, the expected value of Moran's I under the
null hypothesis of no spatial correlation is a value slightly smaller than
zero. When setting spatial_autocorrelation = FALSE
, this function
calculates the expected value based on the number of observations or the
length of the observation vector (while taking out NA
values). Note that
the expected value only depends on the number of observed separate grain
values. This can be useful for plotting.
The expected Moran's I for the null hypothesis of no spatial correlation
corresponds to -1 / (n - 1)
, with n
being the number of non-missing
observations.
By default one numerical value, roughly between -1 and 1, where
close to zero means no spatial correlation, and value close to 1 a positive
spatial correlation given the pattern we interested in (by default all rook
neighbours). A value closer to -1 has no meaning within the context of
luminescence crosstalk. If compute_pseudo_p = TRUE
, then the computed
pseudo p-value is returned. If return_intermediate_values
is set to TRUE
,
a list with several values used for calculation is returned instead of a
single outcome.
Boer, A.d., Steinbuch, L., 2025. calc_MoransI(): Calculate Moran's I. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J., Mercier, N., Philippe, A., Riedesel, S., Autzen, M., Mittelstrass, D., Gray, H.J., Galharret, J., Colombo, M., Steinbuch, L., Boer, A.d., 2025. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 1.0.1. https://r-lum.github.io/Luminescence/
Anna-Maartje de Boer, Luc Steinbuch, Wageningen University & Research, 2025 , RLum Developer Team
de Boer, A-M., Steinbuch, L., Heuvelink, G.B.M., Wallinga, J., 2025. A novel tool to assess crosstalk in single-grain luminescence detection. Submitted.
## Test a fictional sample with spatial correlation
calc_MoransI(object = c(1:100))
## Test some fictional samples without spatial correlation;
## note the randomness with each repetition
calc_MoransI(object = rnorm(n = 100))
calc_MoransI(object = rnorm(n = 100))
calc_MoransI(object = rnorm(n = 100))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.