eland.Series.sum

Series.sum(numeric_only: Optional[bool] = None) → pandas.core.series.Series

Return the sum of the Series values

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

Returns
float

sum of all values

Examples

>>> s = ed.DataFrame('localhost', 'flights')['AvgTicketPrice']
>>> int(s.sum())
8204364