From 40d753bd6c405bb9c90e1a7a91df4722fb96b711 Mon Sep 17 00:00:00 2001 From: Matt Roeschke Date: Mon, 21 Nov 2016 21:24:49 -0800 Subject: [PATCH] DOC: Disambiguate 'where' in boolean indexing-10min.rst (#12661) Expand on boolean indexing example --- doc/source/10min.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/10min.rst b/doc/source/10min.rst index 54bcd76855f32..0612e86134cf2 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -282,7 +282,7 @@ Using a single column's values to select data. df[df.A > 0] -A ``where`` operation for getting. +Selecting values from a DataFrame where a boolean condition is met. .. ipython:: python