Skip to content

Commit 089b61f

Browse files
authored
Add description examples/pyplots/pyplot simple.py (#17697)
DOC: Add description examples/pyplots/pyplot simple.py
1 parent 193b8f6 commit 089b61f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/pyplots/pyplot_simple.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
Pyplot Simple
44
=============
55
6-
A most simple plot, where a list of numbers is plotted against their index.
6+
A very simple pyplot where a list of numbers are ploted against their
7+
index. Creates a straight line due to the rate of change being 1 for
8+
both the X and Y axis.
79
"""
810
import matplotlib.pyplot as plt
911
plt.plot([1, 2, 3, 4])

0 commit comments

Comments
 (0)