From 19c028da0564aa8499735bcc2470863e3e415ae1 Mon Sep 17 00:00:00 2001 From: David Jung Date: Wed, 7 May 2014 14:37:24 -0400 Subject: [PATCH] Added text to the HDFStore.put() method indicating dropna is available and settable via option, as for append() --- pandas/io/pytables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index 95daa2bbc2752..9fabf0ae960fe 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -809,6 +809,8 @@ def put(self, key, value, format=None, append=False, **kwargs): This will force Table format, append the input data to the existing. encoding : default None, provide an encoding for strings + dropna : boolean, default True, do not write an ALL nan row to + the store settable by the option 'io.hdf.dropna_table' """ if format is None: format = get_option("io.hdf.default_format") or 'fixed'