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
Fix docs
  • Loading branch information
Daniel Saxton committed Jan 31, 2019
commit a7752124021c8d1e89968a90fcc0d7cf51872099
14 changes: 7 additions & 7 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2882,7 +2882,7 @@ def sort_index(self, axis=0, level=None, ascending=True, inplace=False,
Returns
-------
Series
The original Series sorted by the labels
The original Series sorted by the labels.

See Also
--------
Expand Down Expand Up @@ -4126,18 +4126,18 @@ def from_csv(cls, path, sep=',', parse_dates=True, header=None,
----------
path : str, file path, or file handle / StringIO
sep : str, default ','
Field delimiter
parse_dates : boolean, default True
Parse dates. Different default from read_table
Field delimiter.
parse_dates : bool, default True
Parse dates. Different default from read_table.
header : int, default None
Row to use as header (skip prior rows)
Row to use as header (skip prior rows).
index_col : int or sequence, default 0
Column to use for index. If a sequence is given, a MultiIndex
is used. Different default from read_table
is used. Different default from read_table.
encoding : str, optional
A string representing the encoding to use if the contents are
non-ascii, for python versions prior to 3.
infer_datetime_format : boolean, default False
infer_datetime_format : bool, default False
If True and `parse_dates` is True for a column, try to infer the
datetime format based on the first datetime string. If the format
can be inferred, there often will be a large parsing speed-up.
Expand Down