We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329e0ba commit 28f9b0fCopy full SHA for 28f9b0f
1 file changed
scripts/basic-plots.py
@@ -20,6 +20,9 @@
20
X = np.linspace(0, 10, 100)
21
Y = 4+2*np.sin(2*X)
22
ax.plot(X, Y, color="C1", linewidth=0.75)
23
+X2 = np.linspace(0.5, 7.5, 8)
24
+Y2 = 7 * (1 - np.exp(-X2 / 2))
25
+ax.plot(X2, Y2, 'C0o', markersize=1)
26
ax.set_xlim(0, 8), ax.set_xticks(np.arange(1,8))
27
ax.set_ylim(0, 8), ax.set_yticks(np.arange(1,8))
28
ax.grid(linewidth=0.125)
0 commit comments