MCPcopy
hub / github.com/pandas-dev/pandas / max

Function max

pandas/core/array_algos/masked_reductions.py:159–166  ·  view source on GitHub ↗
(
    values: np.ndarray,
    mask: npt.NDArray[np.bool_],
    *,
    skipna: bool = True,
    axis: AxisInt | None = None,
)

Source from the content-addressed store, hash-verified

157
158
159def max(
160 values: np.ndarray,
161 mask: npt.NDArray[np.bool_],
162 *,
163 skipna: bool = True,
164 axis: AxisInt | None = None,
165):
166 return _minmax(np.max, values=values, mask=mask, skipna=skipna, axis=axis)
167
168
169def mean(

Callers 15

setupMethod · 0.85
home_add_releasesMethod · 0.85
datesMethod · 0.85
_cycle_colorsFunction · 0.85
normalizeFunction · 0.85
bootstrap_plotFunction · 0.85
get_xlimFunction · 0.85
clipMethod · 0.85
_wrap_resultMethod · 0.85

Calls 1

_minmaxFunction · 0.85