plot_note

PlasmaCalcs.plotting.plot_tools.plot_tricks.plot_note(note, loc='upper left', *, margin=0.03, ax=None, xy=None, **kw_annotate)

add this note to the current plot at the indicated position.

For more detailed control, use plt.annotate instead.
loc: str or tuple
position in axes coords.
str -> also sets horizontal & vertical alignment (via ‘ha’ & ‘va’ kwargs).
See below for valid strings.
margin: number, probably between 0 and 0.25
margin to add to the plot locations. E.g. use 0+margin for bottom instead of 0.
ax: None or matplotlib axes object
axes to add the note to. If None, use plt.annotate() instead of ax.annotate().
xy: None or alias for loc
if provided, use xy input instead of loc, and completely ignore loc.
Valid strings are (with outer/above/outside/below being outside the axes):
‘outer upper left’, ‘above upper left’, ‘above upper center’, ‘above upper right’, ‘outer upper right’,
‘outside upper left’, ‘upper left’, ‘upper center’, ‘upper right’, ‘outside upper right’,
‘outside center left’, ‘center left’, ‘center’, ‘center right’, ‘outside center right’,
‘outside lower left’, ‘lower left’, ‘lower center’, ‘lower right’, ‘outside lower right’,
‘outer lower left’, ‘below lower left’, ‘below lower center’, ‘below lower right’, ‘outer lower right’.