(self, skipna=True, numeric_only=False, split_every=False, axis=0)
| 281 | return res1, res2 |
| 282 | |
| 283 | def sum(self, skipna=True, numeric_only=False, split_every=False, axis=0): |
| 284 | return Sum(self, skipna, numeric_only, split_every, axis) |
| 285 | |
| 286 | def prod(self, skipna=True, numeric_only=False, split_every=False, axis=0): |
| 287 | return Prod(self, skipna, numeric_only, split_every, axis) |