(self, axis=0, numeric_only=False, split_every=False)
| 1900 | |
| 1901 | @derived_from(pd.DataFrame) |
| 1902 | def count(self, axis=0, numeric_only=False, split_every=False): |
| 1903 | axis = self._validate_axis(axis) |
| 1904 | if axis == 1: |
| 1905 | return self.map_partitions(M.count, numeric_only=numeric_only, axis=axis) |
| 1906 | return new_collection(self.expr.count(numeric_only, split_every)) |
| 1907 | |
| 1908 | @derived_from(pd.DataFrame) |
| 1909 | def abs(self): |
nothing calls this directly
no test coverage detected