(self, max_rows=5)
| 4631 | |
| 4632 | @derived_from(pd.Series) |
| 4633 | def to_string(self, max_rows=5): |
| 4634 | # option_context doesn't affect |
| 4635 | return self._repr_data().to_string(max_rows=max_rows) |
| 4636 | |
| 4637 | def _repr_data(self): |
| 4638 | return _repr_data_series(self._meta, self._repr_divisions) |