@@ -997,12 +997,14 @@ def put(
997
997
key : str
998
998
value : {Series, DataFrame}
999
999
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.
1006
1008
append : bool, default False
1007
1009
This will force Table format, append the input data to the
1008
1010
existing.
@@ -1126,10 +1128,12 @@ def append(
1126
1128
key : str
1127
1129
value : {Series, DataFrame}
1128
1130
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.
1133
1137
append : bool, default True
1134
1138
Append the input data to the existing.
1135
1139
data_columns : list of columns, or True, default None
0 commit comments