Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs
  • Loading branch information
Daniel Saxton committed Jan 31, 2019
commit b1dfb6420c471425c705949839c2fb2adc08cf6a
6 changes: 4 additions & 2 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ def to_string(self, buf=None, na_rep='NaN', float_format=None, header=True,
Returns
-------
str or None
String representation of Series if buf=None, otherwise None.
String representation of Series if ``buf=None``, otherwise None.
"""

formatter = fmt.SeriesFormatter(self, name=name, length=length,
Expand Down Expand Up @@ -3012,7 +3012,9 @@ def argsort(self, axis=0, kind='quicksort', order=None):

Returns
-------
Series, with -1 indicated where nan values are present
Series
Positions of values within the sort order with -1 indicating
nan values.

See Also
--------
Expand Down