Good evening! Question from kindergarten, but still.
I build the simplest graph:
import matplotlib.pyplot as plt import random as r example = {"mm1":{"x":[0,1,2,3], "y":[0,1,2,3]}, "mm2":{"x":[0,1,2,3], "y":[4,5,6,10]}} for m,i in example.items(): plt.title(m) plt.plot(i["x"], i["y"], "b") plt.grid(True, linestyle='-', color='0.75') plt.show() Is it possible, instead of the numerical values of the scale X, to display aliases?
Not [0.0, 0.5, 1.0 ...] but [A, B, C, D]. I'm not interested in a column chart, where each column can be given a name.


