1fig = plt.figure()
2ax = fig.add_subplot(...)
3
4ax.set_title('Title Here')
5
6ax.set_xlabel('x label here')
7ax.set_ylabel('y label here')
8ax.set_zlabel('z label here')
1ticks = [0, 1, 2]
2labels = ["a", "b", "c"]
3
4plt.figure()
5plt.xticks(ticks, labels)
6plt.show()