Articles → Matplotlib → Hist Function In Matplotlib
import matplotlib.pyplot as plt fig, axs = plt.subplots(1,2) axs[0].hist(1000) axs[1].hist(2000) plt.show()
Query/Feedback