pub struct BioenvResult {
pub best_variables: Vec<usize>,
pub best_correlation: f64,
pub all_results: Vec<(Vec<usize>, f64)>,
}Expand description
Result of BIOENV analysis.
Fields§
§best_variables: Vec<usize>Indices of the best subset of environmental variables (0-based).
best_correlation: f64Spearman correlation for the best subset.
all_results: Vec<(Vec<usize>, f64)>All subsets tested with their correlations: (variable indices, correlation).
Trait Implementations§
Source§impl Clone for BioenvResult
impl Clone for BioenvResult
Source§fn clone(&self) -> BioenvResult
fn clone(&self) -> BioenvResult
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 moreAuto Trait Implementations§
impl Freeze for BioenvResult
impl RefUnwindSafe for BioenvResult
impl Send for BioenvResult
impl Sync for BioenvResult
impl Unpin for BioenvResult
impl UnsafeUnpin for BioenvResult
impl UnwindSafe for BioenvResult
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