(self, skipna=True, numeric_only=False, split_every=False)
| 322 | ) |
| 323 | |
| 324 | def idxmax(self, skipna=True, numeric_only=False, split_every=False): |
| 325 | return IdxMax( |
| 326 | self, skipna=skipna, numeric_only=numeric_only, split_every=split_every |
| 327 | ) |
| 328 | |
| 329 | def mode(self, dropna=True, split_every=False): |
| 330 | return Mode(self, dropna=dropna, split_every=split_every) |