File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,9 @@ They can take a number of arguments:
165
165
- ``converters ``: a dictionary of functions for converting values in certain
166
166
columns, where keys are either integers or column labels
167
167
- ``encoding ``: a string representing the encoding to use for decoding
168
- unicode data, e.g. ``'utf-8` `` or ``'latin-1' ``.
168
+ unicode data, e.g. ``'utf-8` `` or ``'latin-1' ``. `Full list of Python
169
+ standard encodings
170
+ <https://docs.python.org/3/library/codecs.html#standard-encodings> `_
169
171
- ``verbose ``: show number of NA values inserted in non-numeric columns
170
172
- ``squeeze ``: if True then output with only one column is turned into Series
171
173
- ``error_bad_lines ``: if False then any lines causing an error will be skipped :ref: `bad lines <io.bad_lines >`
@@ -372,7 +374,9 @@ result in byte strings being decoded to unicode in the result:
372
374
df[' word' ][1 ]
373
375
374
376
Some formats which encode all characters as multiple bytes, like UTF-16, won't
375
- parse correctly at all without specifying the encoding.
377
+ parse correctly at all without specifying the encoding. `Full list of Python
378
+ standard encodings
379
+ <https://docs.python.org/3/library/codecs.html#standard-encodings> `_
376
380
377
381
.. _io.index_col :
378
382
Original file line number Diff line number Diff line change @@ -132,7 +132,9 @@ class ParserWarning(Warning):
132
132
delimiter : string, default None
133
133
Alternative argument name for sep. Regular expressions are accepted.
134
134
encoding : string, default None
135
- Encoding to use for UTF when reading/writing (ex. 'utf-8')
135
+ Encoding to use for UTF when reading/writing (ex. 'utf-8'). `List of Python
136
+ standard encodings
137
+ <https://docs.python.org/3/library/codecs.html#standard-encodings>`_
136
138
squeeze : boolean, default False
137
139
If the parsed data only contains one column then return a Series
138
140
na_filter : boolean, default True
You can’t perform that action at this time.
0 commit comments