blob: 25a33e3aea90dbc51e55bb2ee7f69a00de947a59 (
plain)
1
2
3
4
5
6
7
|
from typing import List
__all__: List[str]
def histogram_bin_edges(a, bins=..., range=..., weights=...): ...
def histogram(a, bins=..., range=..., normed=..., weights=..., density=...): ...
def histogramdd(sample, bins=..., range=..., normed=..., weights=..., density=...): ...
|