Skip to content

Commit

Permalink
DOC: actually document float_precision in read_csv
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
gfyoung committed Jun 6, 2016
1 parent b722222 commit a9eed16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,10 @@ thousands : str, default ``None``
Thousands separator.
decimal : str, default ``'.'``
Character to recognize as decimal point. E.g. use ``','`` for European data.
float_precision : string, default None
Specifies which converter the C engine should use for floating-point values.
The options are ``None`` for the ordinary converter, ``high`` for the
high-precision converter, and ``round_trip`` for the round-trip converter.
lineterminator : str (length 1), default ``None``
Character to break file into lines. Only valid with C parser.
quotechar : str (length 1)
Expand Down
5 changes: 5 additions & 0 deletions pandas/io/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@
Thousands separator
decimal : str, default '.'
Character to recognize as decimal point (e.g. use ',' for European data).
float_precision : string, default None
Specifies which converter the C engine should use for floating-point
values. The options are `None` for the ordinary converter,
`high` for the high-precision converter, and `round_trip` for the
round-trip converter.
lineterminator : str (length 1), default None
Character to break file into lines. Only valid with C parser.
quotechar : str (length 1), optional
Expand Down

0 comments on commit a9eed16

Please sign in to comment.