You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/visualization.rst
+5-5
Original file line number
Diff line number
Diff line change
@@ -375,7 +375,7 @@ For example, horizontal and custom-positioned boxplot can be drawn by
375
375
376
376
377
377
See the :meth:`boxplot <matplotlib.axes.Axes.boxplot>` method and the
378
-
`matplotlib boxplot documenation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.boxplot>`__ for more.
378
+
`matplotlib boxplot documentation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.boxplot>`__ for more.
379
379
380
380
381
381
The existing interface ``DataFrame.boxplot`` to plot boxplot still can be used.
@@ -601,7 +601,7 @@ Below example shows a bubble chart using a dataframe column values as bubble siz
601
601
plt.close('all')
602
602
603
603
See the :meth:`scatter <matplotlib.axes.Axes.scatter>` method and the
604
-
`matplotlib scatter documenation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.scatter>`__ for more.
604
+
`matplotlib scatter documentation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.scatter>`__ for more.
605
605
606
606
.. _visualization.hexbin:
607
607
@@ -665,7 +665,7 @@ given by column ``z``. The bins are aggregated with numpy's ``max`` function.
665
665
plt.close('all')
666
666
667
667
See the :meth:`hexbin <matplotlib.axes.Axes.hexbin>` method and the
668
-
`matplotlib hexbin documenation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.hexbin>`__ for more.
668
+
`matplotlib hexbin documentation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.hexbin>`__ for more.
669
669
670
670
.. _visualization.pie:
671
671
@@ -761,7 +761,7 @@ If you pass values whose sum total is less than 1.0, matplotlib draws a semicirc
761
761
@savefigseries_pie_plot_semi.png
762
762
series.plot(kind='pie', figsize=(6, 6))
763
763
764
-
See the `matplotlib pie documenation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.pie>`__ for more.
764
+
See the `matplotlib pie documentation<http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.pie>`__ for more.
765
765
766
766
.. ipython:: python
767
767
:suppress:
@@ -1445,7 +1445,7 @@ Finally, there is a helper function ``pandas.tools.plotting.table`` to create a
1445
1445
1446
1446
plt.close('all')
1447
1447
1448
-
**Note**: You can get table instances on the axes using ``axes.tables`` property for further decorations. See the `matplotlib table documenation<http://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes.table>`__ for more.
1448
+
**Note**: You can get table instances on the axes using ``axes.tables`` property for further decorations. See the `matplotlib table documentation<http://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes.table>`__ for more.
0 commit comments