bpd.Series.describe

Series.describe()[source]

Generate descriptive statistics.

Statistics summarize the central tendency, dispersion and shape of a Series’ distribution, excluding NaN values.

Analyzes both numeric and object series.

Parameters:None
Returns:descr – Summary statistics of the Series provided.
Return type:Series

Examples

>>> s = bpd.Series(data=[6, 7, 7, 5, 9, 5, 1])
>>> s.describe()
count    7.000000
mean     5.714286
std      2.497618
min      1.000000
25%      5.000000
50%      6.000000
75%      7.000000
max      9.000000
dtype: float64