diff --git a/doc/source/10min.rst b/doc/source/10min.rst index d51290b2a983b..46f3b44055571 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -282,7 +282,14 @@ Using a single column's values to select data. df[df.A > 0] -A ``where`` operation for getting. +A ``where`` is an attribute of the DataFrame class which helps in getting the results +based upon the conditional statement that was passed as an argument. + +.. ipython:: python + + df.where(df>0) + +It is similar to the statement. .. ipython:: python