|
152 | 152 | Additional strings to recognize as NA/NaN. If dict passed, specific |
153 | 153 | per-column NA values. By default the following values are interpreted as |
154 | 154 | NaN: '""" + fill("', '".join(sorted(_NA_VALUES)), |
155 | | - 70, subsequent_indent=" ") + """'`. |
| 155 | + 70, subsequent_indent=" ") + """'. |
156 | 156 | keep_default_na : bool, default True |
157 | 157 | If na_values are specified and keep_default_na is False the default NaN |
158 | 158 | values are overridden, otherwise they're appended to. |
|
181 | 181 |
|
182 | 182 | Note: A fast-path exists for iso8601-formatted dates. |
183 | 183 | infer_datetime_format : boolean, default False |
184 | | - If True and parse_dates is enabled, pandas will attempt to infer the format |
185 | | - of the datetime strings in the columns, and if it can be inferred, switch |
186 | | - to a faster method of parsing them. In some cases this can increase the |
187 | | - parsing speed by 5-10x. |
| 184 | + If True and `parse_dates` is enabled, pandas will attempt to infer the |
| 185 | + format of the datetime strings in the columns, and if it can be inferred, |
| 186 | + switch to a faster method of parsing them. In some cases this can increase |
| 187 | + the parsing speed by 5-10x. |
188 | 188 | keep_date_col : boolean, default False |
189 | | - If True and parse_dates specifies combining multiple columns then |
| 189 | + If True and `parse_dates` specifies combining multiple columns then |
190 | 190 | keep the original columns. |
191 | 191 | date_parser : function, default None |
192 | 192 | Function to use for converting a sequence of string columns to an array of |
193 | 193 | datetime instances. The default uses ``dateutil.parser.parser`` to do the |
194 | | - conversion. Pandas will try to call date_parser in three different ways, |
| 194 | + conversion. Pandas will try to call `date_parser` in three different ways, |
195 | 195 | advancing to the next if an exception occurs: 1) Pass one or more arrays |
196 | | - (as defined by parse_dates) as arguments; 2) concatenate (row-wise) the |
197 | | - string values from the columns defined by parse_dates into a single array |
198 | | - and pass that; and 3) call date_parser once for each row using one or more |
199 | | - strings (corresponding to the columns defined by parse_dates) as arguments. |
| 196 | + (as defined by `parse_dates`) as arguments; 2) concatenate (row-wise) the |
| 197 | + string values from the columns defined by `parse_dates` into a single array |
| 198 | + and pass that; and 3) call `date_parser` once for each row using one or |
| 199 | + more strings (corresponding to the columns defined by `parse_dates`) as |
| 200 | + arguments. |
200 | 201 | dayfirst : boolean, default False |
201 | 202 | DD/MM format dates, international and European format |
202 | 203 | iterator : boolean, default False |
|
0 commit comments