(self, skipna=True, numeric_only=False, split_every=False, axis=0)
| 307 | ) |
| 308 | |
| 309 | def max(self, skipna=True, numeric_only=False, split_every=False, axis=0): |
| 310 | return Max(self, skipna, numeric_only, split_every, axis) |
| 311 | |
| 312 | def any(self, skipna=True, split_every=False): |
| 313 | return Any(self, skipna=skipna, split_every=split_every) |