pub trait FillWithWeighted<D, W> {
// Required method
fn fill_with_weighted(&mut self, data: D, weight: W);
}
Expand description
Fill a histogram with some weighted value.
As FillWith, but for instances where the value may also be weighted. For example, see WeightedMean.
Required Methods§
Sourcefn fill_with_weighted(&mut self, data: D, weight: W)
fn fill_with_weighted(&mut self, data: D, weight: W)
Fill a histogram with some weighted value.