Histogram (Hist)¶
A Hist object represents a mapping from quantities to their frequencies or counts.
Hist is a subclass of a Pandas Series, so it has all Series methods, although some are overridden to change their behavior.
Bases: Pmf
Represents a Pmf that maps from values to frequencies/counts.
Source code in empiricaldist/empiricaldist.py
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 | |
from_seq(seq, normalize=False, **options)
staticmethod
¶
Make a distribution from a sequence of values.
| Parameters: |
|
|---|
Returns: Counter object
Source code in empiricaldist/empiricaldist.py
899 900 901 902 903 904 905 906 907 908 909 910 911 | |