@@ -118,11 +118,12 @@ The ``kind`` keyword argument of :meth:`~DataFrame.plot` accepts
118
118
a handful of values for plots other than the default Line plot.
119
119
These include:
120
120
121
- * :ref: `'bar' <visualization.barplot >` or ``'barh' `` for bar plots,
122
- * :ref: `'kde' <visualization.kde >` or ``'density' `` for density plots,
123
- * :ref: `'area' <visualization.area_plot >` for area plots,
124
- * :ref: `'scatter' <visualization.scatter_matrix >` for scatter plots, and
125
- * :ref: `'hexbin' <visualization.hexbin >` for hexagonal bin plots.
121
+ * :ref: `'bar' <visualization.barplot >` or :ref: `'barh' <visualization.barplot >` for bar plots
122
+ * :ref: `'kde' <visualization.kde >` or ``'density' `` for density plots
123
+ * :ref: `'area' <visualization.area_plot >` for area plots
124
+ * :ref: `'scatter' <visualization.scatter_matrix >` for scatter plots
125
+ * :ref: `'hexbin' <visualization.hexbin >` for hexagonal bin plots
126
+ * :ref: `'pie' <visualization.pie >` for pie plots
126
127
127
128
In addition to these ``kind `` s, there are the :ref: `DataFrame.hist() <visualization.hist >`,
128
129
and :ref: `DataFrame.boxplot() <visualization.box >` methods, which use a separate interface.
@@ -132,12 +133,12 @@ that take a :class:`Series` or :class:`DataFrame` as an argument. These
132
133
include
133
134
134
135
* :ref: `Scatter Matrix <visualization.scatter_matrix >`
135
- * :ref: `Andrews Curves <visualization.andrews_curves >`,
136
- * :ref: `Parallel Coordinates <visualization.parallel_coordinates >`,
137
- * :ref: `Lag Plot <visualization.lag >`,
138
- * :ref: `Autocorrelation Plot <visualization.autocorrelation >`,
139
- * :ref: `Bootstrap Plot <visualization.bootstrap >`, and
140
- * :ref: `RadViz <visualization.radviz >`.
136
+ * :ref: `Andrews Curves <visualization.andrews_curves >`
137
+ * :ref: `Parallel Coordinates <visualization.parallel_coordinates >`
138
+ * :ref: `Lag Plot <visualization.lag >`
139
+ * :ref: `Autocorrelation Plot <visualization.autocorrelation >`
140
+ * :ref: `Bootstrap Plot <visualization.bootstrap >`
141
+ * :ref: `RadViz <visualization.radviz >`
141
142
142
143
Plots may also be adorned with :ref: `errorbars <visualization.errorbars >`
143
144
or :ref: `tables <visualization.table >`.
@@ -713,8 +714,8 @@ layout and formatting of the returned plot:
713
714
For each kind of plot (e.g. `line `, `bar `, `scatter `) any additional arguments
714
715
keywords are passed alogn to the corresponding matplotlib function
715
716
(:meth: `ax.plot() <matplotlib.axes.Axes.plot> `,
716
- :meth: `ax.bar() <matplotlib.axes.Axes.bar> `,
717
- :meth: `ax.scatter() <matplotlib.axes.Axes.scatter> `). These can be used
717
+ :meth: `ax.bar() <matplotlib.axes.Axes.bar> `,
718
+ :meth: `ax.scatter() <matplotlib.axes.Axes.scatter> `). These can be used
718
719
to control additional styling, beyond what pandas provides.
719
720
720
721
Controlling the Legend
0 commit comments