Skip to content

Commit

Permalink
Changed description of parse_dates in read_excel(). (#29796)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander135 authored and WillAyd committed Nov 23, 2019
1 parent e0bd4d5 commit ab0c582
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pandas/io/excel/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,9 @@
result 'foo'
If a column or index contains an unparseable date, the entire column or
index will be returned unaltered as an object data type. For non-standard
datetime parsing, use ``pd.to_datetime`` after ``pd.read_excel``.
index will be returned unaltered as an object data type. If you don`t want to
parse some cells as date just change their type in Excel to "Text".
For non-standard datetime parsing, use ``pd.to_datetime`` after ``pd.read_excel``.
Note: A fast-path exists for iso8601-formatted dates.
date_parser : function, optional
Expand Down

0 comments on commit ab0c582

Please sign in to comment.