Histogram chartΒΆ

Histogram chart was created by hist() function.

x = random.randn(10000)
hist(x, bins=50, color='c')
title('Histogram')
../../../_images/hist_1.png