(
self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs
)
| 1836 | |
| 1837 | @derived_from(pd.DataFrame) |
| 1838 | def mean( |
| 1839 | self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs |
| 1840 | ): |
| 1841 | _raise_if_object_series(self, "mean") |
| 1842 | axis = self._validate_axis(axis) |
| 1843 | if axis == 1: |
| 1844 | return self.map_partitions( |
| 1845 | M.mean, skipna=skipna, numeric_only=numeric_only, axis=axis |
| 1846 | ) |
| 1847 | return new_collection( |
| 1848 | self.expr.mean(skipna, numeric_only, split_every=split_every, axis=axis) |
| 1849 | ) |
| 1850 | |
| 1851 | @derived_from(pd.DataFrame) |
| 1852 | def max(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs): |
nothing calls this directly
no test coverage detected