Code like this:
plt.ticklabel_format(style='plain', axis='x', useOffset=False)
plt.plot(range(1, 3), logger.acc)
plt.xlabel("Epochs")
plt.ylabel("Accuracy")
plt.show()
Produces a result like this:

I want the x axis to only have whole integer numbers. There should be a simple flag for this, but i can't find it.
