(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs)
| 1850 | |
| 1851 | @derived_from(pd.DataFrame) |
| 1852 | def max(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs): |
| 1853 | axis = self._validate_axis(axis) |
| 1854 | if axis == 1: |
| 1855 | return self.map_partitions( |
| 1856 | M.max, skipna=skipna, numeric_only=numeric_only, axis=axis |
| 1857 | ) |
| 1858 | return new_collection(self.expr.max(skipna, numeric_only, split_every, axis)) |
| 1859 | |
| 1860 | @derived_from(pd.DataFrame) |
| 1861 | def any(self, axis=0, skipna=True, split_every=False, **kwargs): |
nothing calls this directly
no test coverage detected