pub struct SpatialAutocorrelationConfig {
pub k_neighbors: usize,
pub metric: SpatialDistanceMetric,
pub include_morans_i: bool,
pub include_lisa: bool,
}Expand description
Configuration for spatial autocorrelation features
Fields§
§k_neighbors: usizeNumber of nearest neighbors to consider
metric: SpatialDistanceMetricDistance metric
include_morans_i: boolWhether to include Moran’s I statistic
include_lisa: boolWhether to include local indicators of spatial association (LISA)
Trait Implementations§
Source§impl Clone for SpatialAutocorrelationConfig
impl Clone for SpatialAutocorrelationConfig
Source§fn clone(&self) -> SpatialAutocorrelationConfig
fn clone(&self) -> SpatialAutocorrelationConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpatialAutocorrelationConfig
impl Debug for SpatialAutocorrelationConfig
Auto Trait Implementations§
impl Freeze for SpatialAutocorrelationConfig
impl RefUnwindSafe for SpatialAutocorrelationConfig
impl Send for SpatialAutocorrelationConfig
impl Sync for SpatialAutocorrelationConfig
impl Unpin for SpatialAutocorrelationConfig
impl UnwindSafe for SpatialAutocorrelationConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more