From c2d1bd90b77741a1060224d2aff6175b67f5134d Mon Sep 17 00:00:00 2001 From: Phillip Cloud Date: Wed, 24 Jul 2013 21:16:20 -0400 Subject: [PATCH] DOC/BUG: fix doc build error because a frame was being redefined --- doc/source/indexing.rst | 6 ++++++ doc/source/v0.13.0.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst index 213a7ab659dae..d2f16c798fdb3 100644 --- a/doc/source/indexing.rst +++ b/doc/source/indexing.rst @@ -512,6 +512,12 @@ Selecting values from a DataFrame with a boolean critierion now also preserves input data shape. ``where`` is used under the hood as the implementation. Equivalent is ``df.where(df < 0)`` +.. ipython:: python + :suppress: + + dates = date_range('1/1/2000', periods=8) + df = DataFrame(randn(8, 4), index=dates, columns=['A', 'B', 'C', 'D']) + .. ipython:: python df[df < 0] diff --git a/doc/source/v0.13.0.txt b/doc/source/v0.13.0.txt index f64fae966ac94..e7fbf0c15e624 100644 --- a/doc/source/v0.13.0.txt +++ b/doc/source/v0.13.0.txt @@ -1,7 +1,7 @@ .. _whatsnew_0130: v0.13.0 (August ??, 2013) ------------------------- +------------------------- This is a major release from 0.12.0 and includes several new features and enhancements along with a large number of bug fixes.