(self, max_rows=5)
| 4590 | |
| 4591 | @derived_from(pd.Series) |
| 4592 | def to_string(self, max_rows=5): |
| 4593 | # option_context doesn't affect |
| 4594 | return self._repr_data().to_string(max_rows=max_rows) |
| 4595 | |
| 4596 | def _repr_data(self): |
| 4597 | return _repr_data_series(self._meta, self._repr_divisions) |