En cette question La génération d'une flèche à l'intérieur de xlabel/ylabel a été expliquée. L'explication fournit un exemple :
import matplotlib.pyplot as plt
fig, ax = plt.subplots(1, 1)
# plot your data here ...
ax.set_xlabel(r'$\rho/\rho_{ref}\;\rightarrow$', color='red')
ax.set_ylabel(r'$\Delta \Theta / \omega \longrightarrow$')
plt.show()
Résultat ci-dessous :
Comment faire pour changer d'échelle ? seulement sans mettre à l'échelle le texte qui s'y trouve ?