Skip to content

Commit 19c028d

Browse files
committed
Added text to the HDFStore.put() method indicating dropna is available and settable via option, as for append()
1 parent 3d2c80f commit 19c028d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/io/pytables.py

+2
Original file line numberDiff line numberDiff line change
@@ -809,6 +809,8 @@ def put(self, key, value, format=None, append=False, **kwargs):
809809
This will force Table format, append the input data to the
810810
existing.
811811
encoding : default None, provide an encoding for strings
812+
dropna : boolean, default True, do not write an ALL nan row to
813+
the store settable by the option 'io.hdf.dropna_table'
812814
"""
813815
if format is None:
814816
format = get_option("io.hdf.default_format") or 'fixed'

0 commit comments

Comments
 (0)