I have a list of lists as follows.
import random
list_of_list=[]
for i in range(1000):
sub_list=[random.randint(0, 10) for iter in range(10)]
list_of_list.append(sub_list)
I am able to plot any single sublist of the above list of lists as follows with a hist plot.
plt.hist(list_of_list[10])
Is there anyway I can plot this whole list of list in histogram or any other similar?



