📅  最后修改于: 2022-03-11 14:46:38.741000             🧑  作者: Mango
#Series.plot.hist() method
dataframe['col'].plot.hist()
plt.xlabel('x-axis label')
plt.title('title')
plt.ylim(0, 0)
plt.show()
# The y-label "Frequency" was generated by default
#eg2