import matplotlib.pyplot as plt
vector_of_values = [1,2,3,4,5,6,7,8,9]
plt.hist(vector_of_values)
plt.show()
если вы хотите больше контейнеров, вы можете заменить
plt.hist(vector_of_values)
на
plt.hist(vector_of_values, bins=100) # or any number of bins you can have