From 57d7721f530f8f69587582d6107ffb6af73d8b46 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Sun, 9 Feb 2025 22:30:57 +0530 Subject: [PATCH] DOC: fix ES01 for pandas.HDFStore.put --- pandas/io/pytables.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index b4c78b063c180..ddb83d0de68c3 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -1131,6 +1131,12 @@ def put( """ Store object in HDFStore. + This method writes a pandas DataFrame or Series into an HDF5 file using + either the fixed or table format. The `table` format allows additional + operations like incremental appends and queries but may have performance + trade-offs. The `fixed` format provides faster read/write operations but + does not support appends or queries. + Parameters ---------- key : str