Skip to content

Commit 27baf48

Browse files
DOC: fix ES01 for pandas.read_feather (#60746)
1 parent a4e8149 commit 27baf48

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pandas/io/feather_format.py

+8
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,14 @@ def read_feather(
7878
"""
7979
Load a feather-format object from the file path.
8080
81+
Feather is particularly useful for scenarios that require efficient
82+
serialization and deserialization of tabular data. It supports
83+
schema preservation, making it a reliable choice for use cases
84+
such as sharing data between Python and R, or persisting intermediate
85+
results during data processing pipelines. This method provides additional
86+
flexibility with options for selective column reading, thread parallelism,
87+
and choosing the backend for data types.
88+
8189
Parameters
8290
----------
8391
path : str, path object, or file-like object

0 commit comments

Comments
 (0)