Skip to content

Commit 4cccb73

Browse files
DOC: fix ES01 for pandas.HDFStore.put (#60899)
1 parent a9a3047 commit 4cccb73

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/io/pytables.py

+6
Original file line numberDiff line numberDiff line change
@@ -1131,6 +1131,12 @@ def put(
11311131
"""
11321132
Store object in HDFStore.
11331133
1134+
This method writes a pandas DataFrame or Series into an HDF5 file using
1135+
either the fixed or table format. The `table` format allows additional
1136+
operations like incremental appends and queries but may have performance
1137+
trade-offs. The `fixed` format provides faster read/write operations but
1138+
does not support appends or queries.
1139+
11341140
Parameters
11351141
----------
11361142
key : str

0 commit comments

Comments
 (0)