pub struct CorrelationMatrix {
pub labels: Vec<String>,
pub values: Vec<Vec<f64>>,
}Expand description
A square symmetric correlation or association matrix between named variables.
Fields§
§labels: Vec<String>Variable names corresponding to rows and columns.
values: Vec<Vec<f64>>Symmetric p × p matrix of values.
Trait Implementations§
Source§impl Clone for CorrelationMatrix
impl Clone for CorrelationMatrix
Source§fn clone(&self) -> CorrelationMatrix
fn clone(&self) -> CorrelationMatrix
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CorrelationMatrix
impl Debug for CorrelationMatrix
Source§impl PartialEq for CorrelationMatrix
impl PartialEq for CorrelationMatrix
impl StructuralPartialEq for CorrelationMatrix
Auto Trait Implementations§
impl Freeze for CorrelationMatrix
impl RefUnwindSafe for CorrelationMatrix
impl Send for CorrelationMatrix
impl Sync for CorrelationMatrix
impl Unpin for CorrelationMatrix
impl UnsafeUnpin for CorrelationMatrix
impl UnwindSafe for CorrelationMatrix
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