9951 explained code solutions for 126 technologies


python-matplotlibHow to add axis label


import matplotlib.pyplot as plt

plt.plot([2,1,3])
plt.xlabel("X title")
plt.ylabel("Y title")

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.plot(

plot specified data

xlabel

set label for x-axis

ylabel

set label for y-axis

.show()

render chart in a separate window