File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change 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********
3021Plotting
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
5251Basic 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
518520You can create density plots using the Series/DataFrame.plot and
You can’t perform that action at this time.
0 commit comments