gazelib.statistics package¶
Submodules¶
gazelib.statistics.utils module¶
Common statistical tools that do not depend on CommonV1.
-
gazelib.statistics.utils.arithmetic_mean(l)[source]¶ Return arithmetic mean of list. Return None if empty list. Allows None values and does not take them into consideration.
-
gazelib.statistics.utils.deltas(l)[source]¶ Return list of differences between consecutive list items. The length of the returned list is one smaller than the given list. For an increasing sequence, the deltas are positive. For a decreasing sequence, the deltas are negative.
-
gazelib.statistics.utils.maximum(l)[source]¶ Maximum of a list. Allows None values. Return None if no valid value.
Module contents¶
Statistical tools and methods.