File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
220
220
-i " pandas.Series.to_dict SA01" \
221
221
-i " pandas.Series.to_frame SA01" \
222
222
-i " pandas.Series.to_markdown SA01" \
223
- -i " pandas.Series.to_string SA01" \
224
223
-i " pandas.Series.update PR07,SA01" \
225
224
-i " pandas.Timedelta.as_unit SA01" \
226
225
-i " pandas.Timedelta.asm8 SA01" \
Original file line number Diff line number Diff line change @@ -1491,6 +1491,13 @@ def to_string(
1491
1491
str or None
1492
1492
String representation of Series if ``buf=None``, otherwise None.
1493
1493
1494
+ See Also
1495
+ --------
1496
+ Series.to_dict : Convert Series to dict object.
1497
+ Series.to_frame : Convert Series to DataFrame object.
1498
+ Series.to_markdown : Print Series in Markdown-friendly format.
1499
+ Series.to_timestamp : Cast to DatetimeIndex of Timestamps.
1500
+
1494
1501
Examples
1495
1502
--------
1496
1503
>>> ser = pd.Series([1, 2, 3]).to_string()
You can’t perform that action at this time.
0 commit comments