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