mean_all_weighted

Function mean_all_weighted 

Source
pub fn mean_all_weighted<T, W>(
    input: &Array<T>,
    weights: &Array<W>,
) -> (f64, f64)
Expand description

Compute weighted mean of all data

§Parameters

  • input is the input Array
  • weights Array has the weights

§Return Values

A tuple of 64-bit floating point values with the stat values.