Answers for "label y axis matplotlib"

0

add y axis label matplotlib

plt.ylabel("Y axis label", fontsize=18)
Posted by: Guest on July-17-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language