@@ -1112,6 +1112,8 @@ def put(
1112
1112
Table format. Write as a PyTables Table structure which may perform
1113
1113
worse but allow more flexible operations like searching / selecting
1114
1114
subsets of the data.
1115
+ index : bool, default True
1116
+ Write DataFrame index as a column.
1115
1117
append : bool, default False
1116
1118
This will force Table format, append the input data to the existing.
1117
1119
data_columns : list of columns or True, default None
@@ -1124,6 +1126,8 @@ def put(
1124
1126
Parameter is propagated to 'create_table' method of 'PyTables'.
1125
1127
If set to False it enables to have the same h5 files (same hashes)
1126
1128
independent on creation time.
1129
+ dropna : bool, default False, optional
1130
+ Remove missing values.
1127
1131
1128
1132
.. versionadded:: 1.1.0
1129
1133
"""
@@ -1239,6 +1243,8 @@ def append(
1239
1243
Table format. Write as a PyTables Table structure which may perform
1240
1244
worse but allow more flexible operations like searching / selecting
1241
1245
subsets of the data.
1246
+ index : bool, default True
1247
+ Write DataFrame index as a column.
1242
1248
append : bool, default True
1243
1249
Append the input data to the existing.
1244
1250
data_columns : list of columns, or True, default None
@@ -1251,7 +1257,7 @@ def append(
1251
1257
chunksize : size to chunk the writing
1252
1258
expectedrows : expected TOTAL row size of this table
1253
1259
encoding : default None, provide an encoding for str
1254
- dropna : bool, default False
1260
+ dropna : bool, default False, optional
1255
1261
Do not write an ALL nan row to the store settable
1256
1262
by the option 'io.hdf.dropna_table'.
1257
1263
0 commit comments