Python Forum
bar graph - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: bar graph (/thread-22611.html)



bar graph - prateekshaw - Nov-19-2019

import matplotlib.pyplot as plt; plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt

x_axis_value = ('A', 'B', 'C', 'D')
y_axis_value = [4,3,2,1]
y_axis_value_arrange = np.arange(len(objects))

plt.bar(y_axis_value_arrange,y_axis_value, align='center', alpha=0.5)
plt.xticks(y_axis_value_arrange, x_axis_value)
plt.show()

plt.bar(x_axis_value,y_axis_value, align='center', alpha=0.5)
Above code give the same output , why we need to have xticks , we can directly pass x value to bar function ?
Suggestion ?