Solución:
import matplotlib.pyplot as plt
fg = plt.figure(1);
fg.clf();
ax = fg.add_subplot(1,1,1)
ax.annotate('', xy=(0, -0.1), xycoords="axes fraction", xytext=(1, -0.1),
arrowprops=dict(arrowstyle="<->", color="b"))
ax.grid(True)
fg.canvas.draw()
da
Utilice clip_on = False en ax.arrow
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)