histograms.pyi 280 B

1234567
  1. from typing import List
  2. __all__: List[str]
  3. def histogram_bin_edges(a, bins=..., range=..., weights=...): ...
  4. def histogram(a, bins=..., range=..., normed=..., weights=..., density=...): ...
  5. def histogramdd(sample, bins=..., range=..., normed=..., weights=..., density=...): ...