I trying to use plt.text to plot letters that are variously stretched or squeezed in the horizontal direction. I thought the 'stretch' option would do that, but it doesn't change anything:
import matplotlib.pyplot as plt plt.text(1,1, 'A', stretch=100) plt.show() It doesn't seem to matter what value I use for stretch, the result always looks the same.