(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs)
| 1844 | |
| 1845 | @derived_from(pd.DataFrame) |
| 1846 | def max(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs): |
| 1847 | axis = self._validate_axis(axis) |
| 1848 | if axis == 1: |
| 1849 | return self.map_partitions( |
| 1850 | M.max, skipna=skipna, numeric_only=numeric_only, axis=axis |
| 1851 | ) |
| 1852 | return new_collection(self.expr.max(skipna, numeric_only, split_every, axis)) |
| 1853 | |
| 1854 | @derived_from(pd.DataFrame) |
| 1855 | def any(self, axis=0, skipna=True, split_every=False, **kwargs): |
nothing calls this directly
no test coverage detected