We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4e353 commit d0a97ecCopy full SHA for d0a97ec
README.html
@@ -318,15 +318,15 @@ <h2>Annotate some points</h2>
318
...
319
320
t = 2*np.pi/3
321
-plt.plot([t,t],[0,np.cos(t)], color ='blue', linewidth=2.5, linestyle="--")
+plt.plot([t,t],[0,np.cos(t)], color ='blue', linewidth=1.5, linestyle="--")
322
plt.scatter([t,],[np.cos(t),], 50, color ='blue')
323
324
plt.annotate(r'$\sin(\frac{2\pi}{3})=\frac{\sqrt{3}}{2}$',
325
xy=(t, np.sin(t)), xycoords='data',
326
xytext=(+10, +30), textcoords='offset points', fontsize=16,
327
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))
328
329
-plt.plot([t,t],[0,np.sin(t)], color ='red', linewidth=2.5, linestyle="--")
+plt.plot([t,t],[0,np.sin(t)], color ='red', linewidth=1.5, linestyle="--")
330
plt.scatter([t,],[np.sin(t),], 50, color ='red')
331
332
plt.annotate(r'$\cos(\frac{2\pi}{3})=-\frac{1}{2}$',
README.rst
@@ -336,15 +336,15 @@ the annotate command to display some text with an arrow.
336
337
338
339
- plt.plot([t,t],[0,np.cos(t)], color ='blue', linewidth=2.5, linestyle="--")
+ plt.plot([t,t],[0,np.cos(t)], color ='blue', linewidth=1.5, linestyle="--")
340
341
342
343
344
345
arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))
346
347
- plt.plot([t,t],[0,np.sin(t)], color ='red', linewidth=2.5, linestyle="--")
+ plt.plot([t,t],[0,np.sin(t)], color ='red', linewidth=1.5, linestyle="--")
348
349
350
0 commit comments