9951 explained code solutions for 126 technologies


python-matplotlibHow to set x-axis label for bar chart


import matplotlib.pyplot as plt
plt.bar(['UA', 'UK', 'USA'], [10, 11, 12])
plt.xlabel('Coolness of the country')
plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.bar

will plot bar chart

['UA', 'UK', 'USA']

x-axis values

[10, 11, 12]

y-axis values

xlabel

set label for x-axis

.show()

render chart in a separate window