Articles → Matplotlib → Hist Function In Matplotlib
Hist Function In Matplotlib
Purpose
Example
import matplotlib.pyplot as plt
fig, axs = plt.subplots(1,2)
axs[0].hist(1000)
axs[1].hist(2000)
plt.show()
Output
Posted By - | Karan Gupta |
|
Posted On - | Tuesday, June 25, 2019 |