Skip to content

Commit 769e23f

Browse files
authored
Update pytables.py
1 parent feedb55 commit 769e23f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/pytables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ def put(
11701170
complevel : int, 0-9, default None
11711171
Specifies a compression level for data.
11721172
A value of 0 or None disables compression.
1173-
min_itemsize : int, dict of str: int, or None, default None
1173+
min_itemsize : int, dict of str: int, or None, default None
11741174
Minimum size in bytes for string columns. This parameter is only used when
11751175
format='table'. Can be:
11761176
- int: Apply the same minimum size to all string columns
@@ -1213,7 +1213,7 @@ def put(
12131213
>>> store = pd.HDFStore("store.h5", "w") # doctest: +SKIP
12141214
>>> store.put("data", df) # doctest: +SKIP
12151215
1216-
Basic usage with ASCII strings:
1216+
Basic usage with ASCII strings:
12171217
>>> df = pd.DataFrame([['hello', 'world']], columns=['A', 'B'])
12181218
>>> store = pd.HDFStore("store.h5", 'w') # doctest: +SKIP
12191219
>>> store.put('data', df, format='table', min_itemsize={'A': 10, 'B': 10}) # doctest: +SKIP

0 commit comments

Comments
 (0)