pub struct CorrelationCI {
pub lower: f64,
pub upper: f64,
pub confidence: f64,
}Expand description
Confidence interval for a correlation coefficient.
Fields§
§lower: f64Lower bound of the confidence interval.
upper: f64Upper bound of the confidence interval.
confidence: f64Confidence level (e.g. 0.95).
Trait Implementations§
Source§impl Clone for CorrelationCI
impl Clone for CorrelationCI
Source§fn clone(&self) -> CorrelationCI
fn clone(&self) -> CorrelationCI
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 CorrelationCI
impl Debug for CorrelationCI
impl Copy for CorrelationCI
Auto Trait Implementations§
impl Freeze for CorrelationCI
impl RefUnwindSafe for CorrelationCI
impl Send for CorrelationCI
impl Sync for CorrelationCI
impl Unpin for CorrelationCI
impl UnsafeUnpin for CorrelationCI
impl UnwindSafe for CorrelationCI
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