标签: python python-3.x pandas matplotlib
我正面临50000个数据点的集合(发生保险损失),并希望找到合适的分布。由于我想在python中进行绘图,因此无法正常工作-但它应该非常简单,例如在第一个plot中产生500的亏损:
50000
plot
500
df = pd.read_excel('data.xlsx') plt.hist(df[1:500], bins='auto')
但plot为空。
你怎么看?
在此先感谢您,: