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

Method _format_body

pandas/io/formats/excel.py:712–716  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

710 return itertools.chain(gen, gen2)
711
712 def _format_body(self) -> Iterable[ExcelCell]:
713 if isinstance(self.df.index, MultiIndex):
714 return self._format_hierarchical_rows()
715 else:
716 return self._format_regular_rows()
717
718 def _format_regular_rows(self) -> Iterable[ExcelCell]:
719 if self._has_aliases or self.header:

Callers 1

get_formatted_cellsMethod · 0.95

Calls 2

_format_regular_rowsMethod · 0.95

Tested by

no test coverage detected