@@ -101,23 +101,14 @@ class ParserWarning(Warning):
101
101
If na_values are specified and keep_default_na is False the default NaN
102
102
values are overridden, otherwise they're appended to
103
103
parse_dates : various, default False
104
- Acceptable input types
105
- * boolean. If True -> try parsing the index.
106
-
107
- * list of ints or names
108
-
109
- * If [1, 2, 3] -> try parsing columns 1, 2, 3 each as a separate date
110
- column.
111
-
112
- * list of lists
113
-
114
- * If [[1, 3]] -> combine columns 1 and 3 and parse as a single date
115
- column.
116
-
117
- * dict
118
-
119
- * {'foo' : [1, 3]} -> parse columns 1, 3 as date and call result 'foo'
120
104
105
+ * boolean. If True -> try parsing the index.
106
+ * list of ints or names. e.g. If [1, 2, 3] -> try parsing columns 1, 2, 3
107
+ each as a separate date column.
108
+ * list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as
109
+ a single date column.
110
+ * dict, e.g. {'foo' : [1, 3]} -> parse columns 1, 3 as date and call result
111
+ 'foo'
121
112
Note: A fast-path exists for iso8601-formatted dates.
122
113
keep_date_col : boolean, default False
123
114
If True and parse_dates specifies combining multiple columns then
0 commit comments