From 76a5f9d0a69d6ba1d8aa61d97688b97287431b3e Mon Sep 17 00:00:00 2001 From: Vtwonine <1430627082@qq.com> Date: Sat, 1 Nov 2025 12:46:32 +0800 Subject: [PATCH] DOC: Add Cross-reference to IO guide --- doc/source/user_guide/io.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index 3f59ad2faae08..5fd2991294c7f 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -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 ` section for upload methods. + Column and index locations and names ++++++++++++++++++++++++++++++++++++ @@ -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 ` section, which covers Drive mounting and direct URL reading. .. _io.excel.excelfile_class: