我用 pyplot/matplotlib 在 python 中制作了一个折线图:
import matplotlib.pyplot as plt
import math
import numpy as np
alphabet = range(0, 25)
firstLine = [letter + 65 for letter in alphabet]
secondLine = [letter + 97 for letter in alphabet]
plt.plot(alphabet, firstLine, '-b', label='ASCII value of capital.')
plt.plot(alphabet, secondLine, '--g', label='ASCII value of lowercase.')
plt.xlabel('Letter in Alphabet')
plt.ylabel('ASCII Value')
plt.title('ASCII value vs. Letter')
plt.legend()
plt.show()
在我的 x 轴上,它当前按数字缩放。但是,我希望用字母(a、b、c、d)而不是说 0、5、10 来标记 x 轴上的增量...具体来说,我希望字母 'a' 映射到 0,' b' 映射到 1 等。
我如何让 pyplot 做到这一点?