pub struct StatisticalEvaluation {
pub benford: Option<BenfordAnalysis>,
pub amount_distribution: Option<AmountDistributionAnalysis>,
pub line_item: Option<LineItemAnalysis>,
pub temporal: Option<TemporalAnalysis>,
pub passes: bool,
pub failures: Vec<String>,
pub issues: Vec<String>,
pub overall_score: f64,
}Expand description
Combined statistical evaluation results.
Fields§
§benford: Option<BenfordAnalysis>Benford’s Law analysis results.
amount_distribution: Option<AmountDistributionAnalysis>Amount distribution analysis results.
line_item: Option<LineItemAnalysis>Line item distribution analysis results.
temporal: Option<TemporalAnalysis>Temporal pattern analysis results.
passes: boolOverall pass/fail status.
failures: Vec<String>Summary of failed checks.
issues: Vec<String>Summary of issues (alias for failures).
overall_score: f64Overall statistical quality score (0.0-1.0).
Implementations§
Source§impl StatisticalEvaluation
impl StatisticalEvaluation
Sourcepub fn check_thresholds(&mut self, thresholds: &EvaluationThresholds)
pub fn check_thresholds(&mut self, thresholds: &EvaluationThresholds)
Check all results against thresholds and update pass status.
Trait Implementations§
Source§impl Clone for StatisticalEvaluation
impl Clone for StatisticalEvaluation
Source§fn clone(&self) -> StatisticalEvaluation
fn clone(&self) -> StatisticalEvaluation
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 StatisticalEvaluation
impl Debug for StatisticalEvaluation
Source§impl Default for StatisticalEvaluation
impl Default for StatisticalEvaluation
Source§impl<'de> Deserialize<'de> for StatisticalEvaluation
impl<'de> Deserialize<'de> for StatisticalEvaluation
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 StatisticalEvaluation
impl RefUnwindSafe for StatisticalEvaluation
impl Send for StatisticalEvaluation
impl Sync for StatisticalEvaluation
impl Unpin for StatisticalEvaluation
impl UnwindSafe for StatisticalEvaluation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.