|
8 | 8 |
|
9 | 9 | .. _matplotlibscreenshots:
|
10 | 10 |
|
11 |
| -Simple Plot |
12 |
| -=========== |
| 11 | +Line Plot |
| 12 | +========= |
13 | 13 |
|
14 |
| -Here's a very basic :func:`~matplotlib.pyplot.plot` with text labels: |
| 14 | +Here's now to create a line plot with text labels using |
| 15 | +:func:`~matplotlib.pyplot.plot`. |
15 | 16 |
|
16 | 17 | .. figure:: ../../gallery/pylab_examples/images/sphx_glr_simple_plot_001.png
|
17 | 18 | :target: ../../gallery/pylab_examples/simple_plot.html
|
|
56 | 57 | Path demo
|
57 | 58 | =========
|
58 | 59 |
|
59 |
| -You can add arbitrary paths in matplotlib using the |
| 60 | +You can add other paths in matplotlib using the |
60 | 61 | :mod:`matplotlib.path` module:
|
61 | 62 |
|
62 | 63 | .. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png
|
|
131 | 132 | Bar charts
|
132 | 133 | ==========
|
133 | 134 |
|
134 |
| -Bar charts are simple to create using the :func:`~matplotlib.pyplot.bar` |
135 |
| -command, which includes customizations such as error bars: |
| 135 | +Use the :func:`~matplotlib.pyplot.bar` command to make bar charts, which |
| 136 | +includes customizations such as error bars: |
136 | 137 |
|
137 | 138 | .. figure:: ../../gallery/pylab_examples/images/sphx_glr_barchart_demo_001.png
|
138 | 139 | :target: ../../gallery/pylab_examples/barchart_demo.html
|
|
141 | 142 |
|
142 | 143 | Barchart Demo
|
143 | 144 |
|
144 |
| -It's also simple to create stacked bars |
| 145 | +You can also create stacked bars |
145 | 146 | (`bar_stacked.py <../../gallery/pylab_examples/bar_stacked.html>`_),
|
146 | 147 | or horizontal bar charts
|
147 | 148 | (`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_).
|
|
152 | 153 | Pie charts
|
153 | 154 | ==========
|
154 | 155 |
|
155 |
| -The :func:`~matplotlib.pyplot.pie` command allows you to easily create pie |
| 156 | +The :func:`~matplotlib.pyplot.pie` command allows you to create pie |
156 | 157 | charts. Optional features include auto-labeling the percentage of area,
|
157 | 158 | exploding one or more wedges from the center of the pie, and a shadow effect.
|
158 | 159 | Take a close look at the attached code, which generates this figure in just
|
|
0 commit comments