Skip to content

DOC: fix ES01 for pandas.read_orc #60851

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pandas/io/orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading