pub struct ComparisonReport { /* private fields */ }Expand description
Comparison report template for A/B testing scenarios
Implementations§
Source§impl ComparisonReport
impl ComparisonReport
Sourcepub fn significance_threshold(self, threshold: f64) -> Self
pub fn significance_threshold(self, threshold: f64) -> Self
Set statistical significance threshold
Sourcepub fn practical_significance_threshold(self, threshold: f64) -> Self
pub fn practical_significance_threshold(self, threshold: f64) -> Self
Set practical significance threshold
Source§impl ComparisonReport
impl ComparisonReport
Sourcepub fn baseline_name(&self) -> &str
pub fn baseline_name(&self) -> &str
Get baseline name (for testing)
Sourcepub fn candidate_name(&self) -> &str
pub fn candidate_name(&self) -> &str
Get candidate name (for testing)
Sourcepub fn significance_threshold_value(&self) -> f64
pub fn significance_threshold_value(&self) -> f64
Get significance threshold (for testing)
Sourcepub fn practical_significance_threshold_value(&self) -> f64
pub fn practical_significance_threshold_value(&self) -> f64
Get practical significance threshold (for testing)
Trait Implementations§
Source§impl Clone for ComparisonReport
impl Clone for ComparisonReport
Source§fn clone(&self) -> ComparisonReport
fn clone(&self) -> ComparisonReport
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 ComparisonReport
impl Debug for ComparisonReport
Source§impl Default for ComparisonReport
impl Default for ComparisonReport
Source§impl ReportTemplate for ComparisonReport
impl ReportTemplate for ComparisonReport
Auto Trait Implementations§
impl Freeze for ComparisonReport
impl RefUnwindSafe for ComparisonReport
impl Send for ComparisonReport
impl Sync for ComparisonReport
impl Unpin for ComparisonReport
impl UnwindSafe for ComparisonReport
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