pub struct BootstrapResult {
pub original_estimate: f64,
pub bootstrap_mean: f64,
pub bootstrap_std_error: f64,
pub bias: f64,
pub confidence_intervals: Vec<ConfidenceInterval>,
pub distribution: Vec<f64>,
pub iterations: usize,
}Expand description
Bootstrap analysis result
Fields§
§original_estimate: f64Original sample statistic
bootstrap_mean: f64Bootstrap mean estimate
bootstrap_std_error: f64Bootstrap standard error
bias: f64Bias (bootstrap mean - original)
confidence_intervals: Vec<ConfidenceInterval>Confidence intervals
distribution: Vec<f64>Bootstrap distribution (all resampled statistics)
iterations: usizeNumber of bootstrap iterations
Implementations§
Trait Implementations§
Source§impl Clone for BootstrapResult
impl Clone for BootstrapResult
Source§fn clone(&self) -> BootstrapResult
fn clone(&self) -> BootstrapResult
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 BootstrapResult
impl Debug for BootstrapResult
Source§impl<'de> Deserialize<'de> for BootstrapResult
impl<'de> Deserialize<'de> for BootstrapResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BootstrapResult
impl RefUnwindSafe for BootstrapResult
impl Send for BootstrapResult
impl Sync for BootstrapResult
impl Unpin for BootstrapResult
impl UnsafeUnpin for BootstrapResult
impl UnwindSafe for BootstrapResult
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