From cfb30821566ef005ca0fc550a40c27e2cd953314 Mon Sep 17 00:00:00 2001 From: lexual Date: Sat, 19 Jul 2014 23:49:51 +1000 Subject: [PATCH] Docs: Panel.dropna now exists, update docs accordingly. --- doc/source/missing_data.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/source/missing_data.rst b/doc/source/missing_data.rst index 4f4e11e39ae48..d3024daaa59c9 100644 --- a/doc/source/missing_data.rst +++ b/doc/source/missing_data.rst @@ -267,9 +267,8 @@ data. To do this, use the **dropna** method: df.dropna(axis=1) df['one'].dropna() -**dropna** is presently only implemented for Series and DataFrame, but will be -eventually added to Panel. Series.dropna is a simpler method as it only has one -axis to consider. DataFrame.dropna has considerably more options, which can be +Series.dropna is a simpler method as it only has one axis to consider. +DataFrame.dropna has considerably more options than Series.dropna, which can be examined :ref:`in the API `. .. _missing_data.interpolate: