Skip to content

Commit f5bea29

Browse files
authored
DOC: updated io/pytables.py to fix PR08 (#34604)
1 parent 2e89508 commit f5bea29

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

pandas/io/pytables.py

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -997,12 +997,14 @@ def put(
997997
key : str
998998
value : {Series, DataFrame}
999999
format : 'fixed(f)|table(t)', default is 'fixed'
1000-
fixed(f) : Fixed format
1001-
Fast writing/reading. Not-appendable, nor searchable.
1002-
table(t) : Table format
1003-
Write as a PyTables Table structure which may perform
1004-
worse but allow more flexible operations like searching
1005-
/ selecting subsets of the data.
1000+
Format to use when storing object in HDFStore. Value can be one of:
1001+
1002+
``'fixed'``
1003+
Fixed format. Fast writing/reading. Not-appendable, nor searchable.
1004+
``'table'``
1005+
Table format. Write as a PyTables Table structure which may perform
1006+
worse but allow more flexible operations like searching / selecting
1007+
subsets of the data.
10061008
append : bool, default False
10071009
This will force Table format, append the input data to the
10081010
existing.
@@ -1126,10 +1128,12 @@ def append(
11261128
key : str
11271129
value : {Series, DataFrame}
11281130
format : 'table' is the default
1129-
table(t) : table format
1130-
Write as a PyTables Table structure which may perform
1131-
worse but allow more flexible operations like searching
1132-
/ selecting subsets of the data.
1131+
Format to use when storing object in HDFStore. Value can be one of:
1132+
1133+
``'table'``
1134+
Table format. Write as a PyTables Table structure which may perform
1135+
worse but allow more flexible operations like searching / selecting
1136+
subsets of the data.
11331137
append : bool, default True
11341138
Append the input data to the existing.
11351139
data_columns : list of columns, or True, default None

0 commit comments

Comments
 (0)