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

Method _info_repr

pandas/core/frame.py:1182–1189  ·  view source on GitHub ↗

True if the repr should show the info view.

(self)

Source from the content-addressed store, hash-verified

1180 return repr_width < width
1181
1182 def _info_repr(self) -> bool:
1183 """
1184 True if the repr should show the info view.
1185 """
1186 info_repr_option = get_option("display.large_repr") == "info"
1187 return info_repr_option and not (
1188 self._repr_fits_horizontal_() and self._repr_fits_vertical_()
1189 )
1190
1191 def __repr__(self) -> str:
1192 """

Callers 2

__repr__Method · 0.95
_repr_html_Method · 0.95

Calls 3

_repr_fits_vertical_Method · 0.95
get_optionFunction · 0.90

Tested by

no test coverage detected