Answers for "matplotlib axis plot"

0

matplotlib axis labels

ticks = [0, 1, 2]
labels = ["a", "b", "c"]

plt.figure()
plt.xticks(ticks, labels)
plt.show()
Posted by: Guest on June-17-2021

Code answers related to "matplotlib axis plot"

Python Answers by Framework

Browse Popular Code Answers by Language