Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Address review comments
  • Loading branch information
rth committed Jan 25, 2020
commit 68266b07bb8f70c0e07708aa618e72a6a76d18a8
12 changes: 4 additions & 8 deletions doc/source/user_guide/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ The pandas I/O API is a set of top level ``reader`` functions accessed like

:ref:`Here <io.perf>` is an informal performance comparison for some of these IO methods.

.. note::
For examples that use the ``StringIO`` class, make sure you import it
with ``from io import StringIO`` for Python 3.

.. _io.read_csv_table:

CSV & text files
Expand Down Expand Up @@ -907,14 +911,6 @@ data columns:
significantly faster, ~20x has been observed.


.. note::

When passing a dict as the `parse_dates` argument, the order of
the columns prepended is not guaranteed. Because of this, when using a
dict for 'parse_dates' in conjunction with the `index_col` argument, it's best to
specify `index_col` as a column label rather then as an index on the resulting frame.


Date parsing functions
++++++++++++++++++++++

Expand Down