pub struct ConfidenceInterval {
pub lo: f32,
pub hi: f32,
pub mean: f32,
pub confidence: f32,
pub n_resamples: usize,
}Expand description
A bootstrap percentile confidence interval.
Fields§
§lo: f32Lower bound (confidence_lo percentile of resampled means).
hi: f32Upper bound (confidence_hi percentile of resampled means).
mean: f32Mean of the original sample.
confidence: f32Confidence level used (e.g. 0.95 for 95% CI).
n_resamples: usizeNumber of resamples performed.
Trait Implementations§
Source§impl Clone for ConfidenceInterval
impl Clone for ConfidenceInterval
Source§fn clone(&self) -> ConfidenceInterval
fn clone(&self) -> ConfidenceInterval
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 ConfidenceInterval
impl Debug for ConfidenceInterval
Auto Trait Implementations§
impl Freeze for ConfidenceInterval
impl RefUnwindSafe for ConfidenceInterval
impl Send for ConfidenceInterval
impl Sync for ConfidenceInterval
impl Unpin for ConfidenceInterval
impl UnsafeUnpin for ConfidenceInterval
impl UnwindSafe for ConfidenceInterval
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