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