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