File tree Expand file tree Collapse file tree 7 files changed +17
-13
lines changed Expand file tree Collapse file tree 7 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ per-file-ignores =
100
100
tutorials/introductory/images.py: E402, E501
101
101
tutorials/introductory/pyplot.py: E402, E501
102
102
tutorials/introductory/sample_plots.py: E501
103
- tutorials/introductory/usage .py: E703
103
+ tutorials/introductory/quick_start .py: E703
104
104
tutorials/text/annotations.py: E402, E501
105
105
tutorials/text/text_intro.py: E402
106
106
tutorials/text/text_props.py: E501
Original file line number Diff line number Diff line change @@ -199,15 +199,15 @@ Documents can be linked with the ``:doc:`` directive:
199
199
200
200
See the :doc:`/users/installing/index`
201
201
202
- See the tutorial :doc:`/tutorials/introductory/usage `
202
+ See the tutorial :doc:`/tutorials/introductory/quick_start `
203
203
204
204
See the example :doc:`/gallery/lines_bars_and_markers/simple_plot`
205
205
206
206
will render as:
207
207
208
208
See the :doc: `/users/installing/index `
209
209
210
- See the tutorial :doc: `/tutorials/introductory/usage `
210
+ See the tutorial :doc: `/tutorials/introductory/quick_start `
211
211
212
212
See the example :doc: `/gallery/lines_bars_and_markers/simple_plot `
213
213
@@ -847,7 +847,7 @@ render as comments in :doc:`/gallery/lines_bars_and_markers/simple_plot`.
847
847
848
848
Tutorials are made with the exact same mechanism, except they are longer, and
849
849
typically have more than one comment block (i.e.
850
- :doc: `/tutorials/introductory/usage `). The first comment block
850
+ :doc: `/tutorials/introductory/quick_start `). The first comment block
851
851
can be the same as the example above. Subsequent blocks of ReST text
852
852
are delimited by a line of ``### `` characters:
853
853
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Learning resources
46
46
Tutorials
47
47
^^^^^^^^^
48
48
49
- - :doc: `Quick-start guide <tutorials/introductory/usage >`
49
+ - :doc: `Quick-start guide <tutorials/introductory/quick_start >`
50
50
- :doc: `Plot types <plot_types/index >`
51
51
- `Introductory tutorials <../tutorials/index.html#introductory >`_
52
52
- :doc: `External learning resources <users/resources/index >`
Original file line number Diff line number Diff line change @@ -44,12 +44,12 @@ Here is a minimal example plot:
44
44
ax.plot(x, y)
45
45
plt.show()
46
46
47
- If a plot does not show up please check :ref: `troubleshooting-faq `.
47
+ If a plot does not show up please check :ref: `troubleshooting-faq `.
48
48
49
49
Where to go next
50
50
----------------
51
51
52
52
- Check out :doc: `Plot types </plot_types/index >` to get an overview of the
53
53
types of plots you can create with Matplotlib.
54
54
- Learn Matplotlib from the ground up in the
55
- :doc: `Quick-start guide </tutorials/introductory/usage >`.
55
+ :doc: `Quick-start guide </tutorials/introductory/quick_start >`.
Original file line number Diff line number Diff line change 43
43
settings. The alternative is the object-oriented interface, which is also
44
44
very powerful, and generally more suitable for large application
45
45
development. If you'd like to learn about the object-oriented
46
- interface, a great place to start is our :doc:`Usage guide
47
- </tutorials/introductory/usage >`. For now, let's get on
46
+ interface, a great place to start is our :doc:`Quick start guide
47
+ </tutorials/introductory/quick_start >`. For now, let's get on
48
48
with the imperative-style approach:
49
49
"""
50
50
Original file line number Diff line number Diff line change 3
3
Pyplot tutorial
4
4
===============
5
5
6
- An introduction to the pyplot interface.
6
+ An introduction to the pyplot interface. Please also see
7
+ :doc:`/tutorials/introductory/quick_start` for an overview of how Matplotlib works.
7
8
"""
8
9
9
10
###############################################################################
Original file line number Diff line number Diff line change 1
1
"""
2
- ***********
3
- Basic Usage
4
- ***********
2
+ *****************
3
+ Quick start guide
4
+ *****************
5
5
6
6
This tutorial covers some basic usage patterns and best practices to
7
7
help you get started with Matplotlib.
8
+
9
+ .. redirect-from:: /tutorials/introductory/usage
10
+
8
11
"""
9
12
10
13
# sphinx_gallery_thumbnail_number = 3
You can’t perform that action at this time.
0 commit comments