(self, skipna=True, numeric_only=False, split_every=False, axis=0)
| 329 | return Mode(self, dropna=dropna, split_every=split_every) |
| 330 | |
| 331 | def min(self, skipna=True, numeric_only=False, split_every=False, axis=0): |
| 332 | return Min(self, skipna, numeric_only, split_every=split_every, axis=axis) |
| 333 | |
| 334 | def count(self, numeric_only=False, split_every=False): |
| 335 | return Count(self, numeric_only, split_every) |