Skip to content

Commit 6b9c46b

Browse files
committed
Merge pull request pandas-dev#11027 from swails/typo
Fix common typo in documentation
2 parents a67b07f + f8cade3 commit 6b9c46b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/source/visualization.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ For example, horizontal and custom-positioned boxplot can be drawn by
375375
376376
377377
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.
379379

380380

381381
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
601601
plt.close('all')
602602
603603
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.
605605

606606
.. _visualization.hexbin:
607607

@@ -665,7 +665,7 @@ given by column ``z``. The bins are aggregated with numpy's ``max`` function.
665665
plt.close('all')
666666
667667
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.
669669

670670
.. _visualization.pie:
671671

@@ -761,7 +761,7 @@ If you pass values whose sum total is less than 1.0, matplotlib draws a semicirc
761761
@savefig series_pie_plot_semi.png
762762
series.plot(kind='pie', figsize=(6, 6))
763763
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.
765765

766766
.. ipython:: python
767767
:suppress:
@@ -1445,7 +1445,7 @@ Finally, there is a helper function ``pandas.tools.plotting.table`` to create a
14451445
14461446
plt.close('all')
14471447
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.
14491449

14501450
.. _visualization.colormaps:
14511451

0 commit comments

Comments
 (0)