(self, max_rows=5)
| 4054 | |
| 4055 | @derived_from(pd.DataFrame) |
| 4056 | def to_string(self, max_rows=5): |
| 4057 | # option_context doesn't affect |
| 4058 | return self._repr_data().to_string(max_rows=max_rows, show_dimensions=False) |
| 4059 | |
| 4060 | @derived_from(pd.DataFrame) |
| 4061 | def to_html(self, max_rows=5): |
nothing calls this directly
no test coverage detected