eland.Series.mean#

Series.mean(numeric_only: Optional[bool] = None) Series#

Return the mean of the Series values

TODO - implement remainder of pandas arguments, currently non-numerics are not supported

float

mean value

pandas.Series.mean

>>> s = ed.DataFrame('http://localhost:9200', 'flights')['AvgTicketPrice']
>>> int(s.mean())
628