Skip to content

Commit ec3b979

Browse files
committed
Merge pull request #7064 from davidljung/master
Added dropna to docstring for HDFStore.put()
2 parents 3ec742a + 19c028d commit ec3b979

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)