Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
DOC: Add Cross-reference to IO guide
  • Loading branch information
Vtwonine committed Nov 1, 2025
commit 76a5f9d0a69d6ba1d8aa61d97688b97287431b3e
3 changes: 3 additions & 0 deletions doc/source/user_guide/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ sep : str, defaults to ``','`` for :func:`read_csv`, ``\t`` for :func:`read_tabl
delimiter : str, default ``None``
Alternative argument name for sep.

For loading local CSV files in Google Colab, see the :ref:`Loading Data in Google Colab <io.colab>` section for upload methods.

Column and index locations and names
++++++++++++++++++++++++++++++++++++

Expand Down Expand Up @@ -3353,6 +3355,7 @@ using internally.
# Returns a DataFrame
pd.read_excel("path_to_file.xls", sheet_name="Sheet1")

For reading Excel files in online environments, refer to the :ref:`Loading Data in Google Colab <io.colab>` section, which covers Drive mounting and direct URL reading.

.. _io.excel.excelfile_class:

Expand Down
Loading