/**
  * Calculate the mean from the sample
  *
  * @param flatDataCollection
  * @return
  */
 public static double mean(FlatDataCollection flatDataCollection) {
   return Descriptives.mean(flatDataCollection);
 }