From b1fca267036375f6a821a6fc6557e2a7dfe33412 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Wed, 5 Feb 2025 12:33:49 +0530 Subject: [PATCH] DOC: fix ES01 for pandas.read_orc --- pandas/io/orc.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandas/io/orc.py b/pandas/io/orc.py index a945f3dc38d35..1a2d564d5b44d 100644 --- a/pandas/io/orc.py +++ b/pandas/io/orc.py @@ -45,6 +45,13 @@ def read_orc( """ Load an ORC object from the file path, returning a DataFrame. + This method reads an ORC (Optimized Row Columnar) file into a pandas + DataFrame using the `pyarrow.orc` library. ORC is a columnar storage format + that provides efficient compression and fast retrieval for analytical workloads. + It allows reading specific columns, handling different filesystem + types (such as local storage, cloud storage via fsspec, or pyarrow filesystem), + and supports different data type backends, including `numpy_nullable` and `pyarrow`. + Parameters ---------- path : str, path object, or file-like object