Skip to content

Commit 348fd11

Browse files
DOC: fix ES01 for pandas.read_orc (pandas-dev#60851)
1 parent 1f106e0 commit 348fd11

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pandas/io/orc.py

+7
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ def read_orc(
4545
"""
4646
Load an ORC object from the file path, returning a DataFrame.
4747
48+
This method reads an ORC (Optimized Row Columnar) file into a pandas
49+
DataFrame using the `pyarrow.orc` library. ORC is a columnar storage format
50+
that provides efficient compression and fast retrieval for analytical workloads.
51+
It allows reading specific columns, handling different filesystem
52+
types (such as local storage, cloud storage via fsspec, or pyarrow filesystem),
53+
and supports different data type backends, including `numpy_nullable` and `pyarrow`.
54+
4855
Parameters
4956
----------
5057
path : str, path object, or file-like object

0 commit comments

Comments
 (0)