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

Method reshape

pandas/core/arrays/masked.py:434–437  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

432 return self._simple_new(data, mask)
433
434 def reshape(self, *args, **kwargs) -> Self:
435 data = self._data.reshape(*args, **kwargs)
436 mask = self._mask.reshape(*args, **kwargs)
437 return self._simple_new(data, mask)
438
439 def ravel(self, *args, **kwargs) -> Self:
440 # TODO: need to make sure we have the same order for data/mask

Callers 15

setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
setupMethod · 0.45
resultMethod · 0.45
create_subplotsFunction · 0.45
flatten_axesFunction · 0.45
_calculate_binsMethod · 0.45
diffFunction · 0.45
_try_castFunction · 0.45
_from_derivativesFunction · 0.45

Calls 1

_simple_newMethod · 0.95