From 0a8f4853dd33749a5f5638eaeed9a827ff33a5c1 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 21 Jan 2025 13:44:51 +0530 Subject: [PATCH] DOC: fix ES01 for pandas.read_feather --- pandas/io/feather_format.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pandas/io/feather_format.py b/pandas/io/feather_format.py index 7b4c81853eba3..565c53f0f3fc5 100644 --- a/pandas/io/feather_format.py +++ b/pandas/io/feather_format.py @@ -78,6 +78,14 @@ def read_feather( """ Load a feather-format object from the file path. + Feather is particularly useful for scenarios that require efficient + serialization and deserialization of tabular data. It supports + schema preservation, making it a reliable choice for use cases + such as sharing data between Python and R, or persisting intermediate + results during data processing pipelines. This method provides additional + flexibility with options for selective column reading, thread parallelism, + and choosing the backend for data types. + Parameters ---------- path : str, path object, or file-like object