diff --git a/doc/source/visualization.rst b/doc/source/visualization.rst index fbc0a9005d50d..d653cb53d6d5b 100644 --- a/doc/source/visualization.rst +++ b/doc/source/visualization.rst @@ -17,15 +17,6 @@ options.display.max_rows = 15 from pandas.compat import lrange -.. note:: - - All calls to ``np.random`` are seeded with 123456. - -.. note:: - - See :ref:`ecosystem ` for visualization libraries - that go beyond the basics included in pandas. - ******** Plotting ******** @@ -47,6 +38,14 @@ All the plots in the documentation are rendered with this option set to the pd.options.display.mpl_style = 'default' +We provide the basics in pandas to easily create decent looking plots. +See the :ref:`ecosystem ` section for visualization +libraries that go beyond the basics documented here. + +.. note:: + + All calls to ``np.random`` are seeded with 123456. + .. _visualization.basic: Basic Plotting: ``plot`` @@ -361,7 +360,7 @@ too dense to plot each point individually. .. ipython:: python df = DataFrame(randn(1000, 2), columns=['a', 'b']) - df['b'] = df['b'] = df['b'] + np.arange(1000) + df['b'] = df['b'] + np.arange(1000) @savefig hexbin_plot.png df.plot(kind='hexbin', x='a', y='b', gridsize=25) @@ -513,6 +512,9 @@ You can create a scatter plot matrix using the .. _visualization.kde: +Density Plot +~~~~~~~~~~~~ + .. versionadded:: 0.8.0 You can create density plots using the Series/DataFrame.plot and