Skip to content

Commit 9fb3aef

Browse files
committed
Test script.
1 parent 62bef78 commit 9fb3aef

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import matplotlib.pyplot as plt
2+
import matplotlib.patheffects as pe
3+
4+
plt.subplot(1,1,1)
5+
plt.annotate('line1\nline2',xy=(0.5,0.5),xycoords='axes fraction',fontsize='xx-large',
6+
path_effects=[pe.withStroke(linewidth=1,foreground='r')])
7+
plt.plot([1,.4,.5,0.2],color='blue',linewidth=5)
8+
plt.text(2.7,0.8,'More testing',fontsize=20,color='green')
9+
10+
plt.show()

0 commit comments

Comments
 (0)