Skip to content

Commit b117b7b

Browse files
author
Tom Augspurger
committed
Merge pull request #7054 from TomAugspurger/visualization-cleanup
DOC: cleanup vis docs
2 parents bbdf617 + 87cefe4 commit b117b7b

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

doc/source/visualization.rst

+12-10
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,6 @@
1717
options.display.max_rows = 15
1818
from pandas.compat import lrange
1919
20-
.. note::
21-
22-
All calls to ``np.random`` are seeded with 123456.
23-
24-
.. note::
25-
26-
See :ref:`ecosystem <ecosystem.visualization>` for visualization libraries
27-
that go beyond the basics included in pandas.
28-
2920
********
3021
Plotting
3122
********
@@ -47,6 +38,14 @@ All the plots in the documentation are rendered with this option set to the
4738
4839
pd.options.display.mpl_style = 'default'
4940
41+
We provide the basics in pandas to easily create decent looking plots.
42+
See the :ref:`ecosystem <ecosystem.visualization>` section for visualization
43+
libraries that go beyond the basics documented here.
44+
45+
.. note::
46+
47+
All calls to ``np.random`` are seeded with 123456.
48+
5049
.. _visualization.basic:
5150

5251
Basic Plotting: ``plot``
@@ -361,7 +360,7 @@ too dense to plot each point individually.
361360
.. ipython:: python
362361
363362
df = DataFrame(randn(1000, 2), columns=['a', 'b'])
364-
df['b'] = df['b'] = df['b'] + np.arange(1000)
363+
df['b'] = df['b'] + np.arange(1000)
365364
366365
@savefig hexbin_plot.png
367366
df.plot(kind='hexbin', x='a', y='b', gridsize=25)
@@ -513,6 +512,9 @@ You can create a scatter plot matrix using the
513512
514513
.. _visualization.kde:
515514

515+
Density Plot
516+
~~~~~~~~~~~~
517+
516518
.. versionadded:: 0.8.0
517519

518520
You can create density plots using the Series/DataFrame.plot and

0 commit comments

Comments
 (0)