Skip to content
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
6 changes: 6 additions & 0 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading