Skip to content

module numpy.statistics

Source: stdlib/numpy/statistics.codon


average(a, axis = None, weights = None, returned: Literal[bool] = False, keepdims: Literal[bool] = False)


cov(m, y = None, rowvar: bool = True, bias: bool = False, ddof: Optional[int] = None, fweights = None, aweights = None, dtype: type = NoneType)


corrcoef(x, y = None, rowvar = True, dtype: type = NoneType)


correlate(a, b, mode: str = "valid")


bincount(x, weights = None, minlength: int = 0)


digitize(x, bins, right: bool = False)


histogram(a, bins = 10, range = None, density: Literal[bool] = False, weights = None)


histogram_bin_edges(a, bins = 10, range = None, weights = None)