(self, max_rows=5)
| 4035 | |
| 4036 | @derived_from(pd.DataFrame) |
| 4037 | def to_string(self, max_rows=5): |
| 4038 | # option_context doesn't affect |
| 4039 | return self._repr_data().to_string(max_rows=max_rows, show_dimensions=False) |
| 4040 | |
| 4041 | @derived_from(pd.DataFrame) |
| 4042 | def to_html(self, max_rows=5): |
nothing calls this directly
no test coverage detected