1#Axis.text() method
2https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.text.html
3
4ax1.text(1.1, -300, 'Label', color='#af0b1e',
5 weight='bold', rotation=3)
6
7Add the text s to the Axes at location x, y in data coordinates.
8
9
10