(self, skipna=True, numeric_only=False, split_every=False)
| 316 | return All(self, skipna=skipna, split_every=split_every) |
| 317 | |
| 318 | def idxmin(self, skipna=True, numeric_only=False, split_every=False): |
| 319 | return IdxMin( |
| 320 | self, skipna=skipna, numeric_only=numeric_only, split_every=split_every |
| 321 | ) |
| 322 | |
| 323 | def idxmax(self, skipna=True, numeric_only=False, split_every=False): |
| 324 | return IdxMax( |