(self, axis=0, numeric_only=False, split_every=False)
| 1894 | |
| 1895 | @derived_from(pd.DataFrame) |
| 1896 | def count(self, axis=0, numeric_only=False, split_every=False): |
| 1897 | axis = self._validate_axis(axis) |
| 1898 | if axis == 1: |
| 1899 | return self.map_partitions(M.count, numeric_only=numeric_only, axis=axis) |
| 1900 | return new_collection(self.expr.count(numeric_only, split_every)) |
| 1901 | |
| 1902 | @derived_from(pd.DataFrame) |
| 1903 | def abs(self): |
nothing calls this directly
no test coverage detected