You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/user_guide/io.rst
-9
Original file line number
Diff line number
Diff line change
@@ -3634,11 +3634,6 @@ It is often the case that users will insert columns to do temporary computations
3634
3634
in Excel and you may not want to read in those columns. ``read_excel`` takes
3635
3635
a ``usecols`` keyword to allow you to specify a subset of columns to parse.
3636
3636
3637
-
.. versionchanged:: 1.0.0
3638
-
3639
-
Passing in an integer for ``usecols`` will no longer work. Please pass in a list
3640
-
of ints from 0 to ``usecols`` inclusive instead.
3641
-
3642
3637
You can specify a comma-delimited set of Excel columns and ranges as a string:
3643
3638
3644
3639
.. code-block:: python
@@ -3881,8 +3876,6 @@ Similarly, the :func:`~pandas.to_excel` method can write OpenDocument spreadshee
3881
3876
Binary Excel (.xlsb) files
3882
3877
--------------------------
3883
3878
3884
-
.. versionadded:: 1.0.0
3885
-
3886
3879
The :func:`~pandas.read_excel` method can also read binary Excel files
3887
3880
using the ``pyxlsb`` module. The semantics and features for reading
3888
3881
binary Excel files mostly match what can be done for `Excel files`_ using
@@ -5419,8 +5412,6 @@ The above example creates a partitioned dataset that may look like:
5419
5412
ORC
5420
5413
---
5421
5414
5422
-
.. versionadded:: 1.0.0
5423
-
5424
5415
Similar to the :ref:`parquet <io.parquet>` format, the `ORC Format <https://orc.apache.org/>`__ is a binary columnar serialization
5425
5416
for data frames. It is designed to make reading data frames efficient. pandas provides both the reader and the writer for the
5426
5417
ORC format, :func:`~pandas.read_orc` and :func:`~pandas.DataFrame.to_orc`. This requires the `pyarrow <https://arrow.apache.org/docs/python/>`__ library.
0 commit comments