From 43ab582467c5bbf120adf815f4ce5430c0d730c0 Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Sat, 12 Sep 2015 16:23:52 -0700 Subject: [PATCH] DOC: fix plot submethods whatsnew example --- doc/source/whatsnew/v0.17.0.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v0.17.0.txt b/doc/source/whatsnew/v0.17.0.txt index 914c18a66af61..3f6da20c4a422 100644 --- a/doc/source/whatsnew/v0.17.0.txt +++ b/doc/source/whatsnew/v0.17.0.txt @@ -150,7 +150,7 @@ The Series and DataFrame ``.plot()`` method allows for customizing :ref:`plot ty To alleviate this issue, we have added a new, optional plotting interface, which exposes each kind of plot as a method of the ``.plot`` attribute. Instead of writing ``series.plot(kind=, ...)``, you can now also use ``series.plot.(...)``: .. ipython:: - :verbatim: + :verbatim: In [13]: df = pd.DataFrame(np.random.rand(10, 2), columns=['a', 'b'])