Struct rv::data::CategoricalSuffStat[][src]

pub struct CategoricalSuffStat {
    pub n: usize,
    pub counts: Vec<f64>,
}

Fields

Methods

impl CategoricalSuffStat
[src]

Trait Implementations

impl Clone for CategoricalSuffStat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CategoricalSuffStat
[src]

Formats the value using the given formatter. Read more

impl<X: CategoricalDatum> SuffStat<X> for CategoricalSuffStat
[src]

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

Auto Trait Implementations