esda.Spatial_Pearson¶
- class esda.Spatial_Pearson(connectivity=None, permutations=999)[source]¶
Global Spatial Pearson Statistic
- __init__(connectivity=None, permutations=999)[source]¶
Initialize a spatial pearson estimator
- Parameters:
- connectivity: scipy.sparse matrix object
the connectivity structure describing the relationships between observed units. Will be row-standardized.
- permutations: int
the number of permutations to conduct for inference. if < 1, no permutational inference will be conducted.
- Attributes:
- association_: numpy.ndarray (2,2)
array containg the estimated Lee spatial pearson correlation coefficients, where element [0,1] is the spatial correlation coefficient, and elements [0,0] and [1,1] are the “spatial smoothing factor”
- reference_distribution_: numpy.ndarray (n_permutations, 2,2)
distribution of correlation matrices for randomly-shuffled maps.
- significance_: numpy.ndarray (2,2)
permutation-based p-values for the fraction of times the observed correlation was more extreme than the simulated correlations.
Methods
__init__
([connectivity, permutations])Initialize a spatial pearson estimator
fit
(x, y)bivariate spatial pearson's R based on Eq.
get_metadata_routing
()Get metadata routing of this object.
get_params
([deep])Get parameters for this estimator.
set_fit_request
(*[, x])Request metadata passed to the
fit
method.set_params
(**params)Set the parameters of this estimator.
- fit(x, y)[source]¶
bivariate spatial pearson’s R based on Eq. 18 of [Lee01].
L = dfrac{Z^T (V^TV) Z}{1^T (V^TV) 1}
- Parameters:
- x
numpy.ndarray
array containing continuous data
- y
numpy.ndarray
array containing continuous data
- x
- Returns:
the
fitted estimator.
Notes
Technical details and derivations can be found in [Lee01].
- set_fit_request(*, x: bool | None | str = '$UNCHANGED$') Spatial_Pearson ¶
Request metadata passed to the
fit
method.Note that this method is only relevant if
enable_metadata_routing=True
(seesklearn.set_config()
). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True
: metadata is requested, and passed tofit
if provided. The request is ignored if metadata is not provided.False
: metadata is not requested and the meta-estimator will not pass it tofit
.None
: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str
: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED
) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline
. Otherwise it has no effect.