eland.Series.sum¶
- Series.sum(numeric_only: bool | None = None) 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
See Also¶
Examples¶
>>> s = ed.DataFrame('http://localhost:9200', 'flights')['AvgTicketPrice'] >>> int(s.sum()) 8204364