|
133 | 133 | + fill("', '".join(sorted(_NA_VALUES)), 70, subsequent_indent=" ")
|
134 | 134 | + """'.
|
135 | 135 | keep_default_na : bool, default True
|
136 |
| - If na_values are specified and keep_default_na is False the default NaN |
137 |
| - values are overridden, otherwise they're appended to. |
| 136 | + Whether or not to include the default NaN values when parsing the data. |
| 137 | + Depending on whether `na_values` is passed in, the behavior is as follows: |
| 138 | +
|
| 139 | + * If `keep_default_na` is True, and `na_values` are specified, `na_values` |
| 140 | + is appended to the default NaN values used for parsing. |
| 141 | + * If `keep_default_na` is True, and `na_values` are not specified, only |
| 142 | + the default NaN values are used for parsing. |
| 143 | + * If `keep_default_na` is False, and `na_values` are specified, only |
| 144 | + the NaN values specified `na_values` are used for parsing. |
| 145 | + * If `keep_default_na` is False, and `na_values` are not specified, no |
| 146 | + strings will be parsed as NaN. |
| 147 | +
|
| 148 | + Note that if `na_filter` is passed in as False, the `keep_default_na` and |
| 149 | + `na_values` parameters will be ignored. |
| 150 | +na_filter : bool, default True |
| 151 | + Detect missing value markers (empty strings and the value of na_values). In |
| 152 | + data without any NAs, passing na_filter=False can improve the performance |
| 153 | + of reading a large file. |
138 | 154 | verbose : bool, default False
|
139 | 155 | Indicate number of NA values placed in non-numeric columns.
|
140 | 156 | parse_dates : bool, list-like, or dict, default False
|
|
0 commit comments