标签: python pandas matplotlib histogram
我正在绘制比率值的数据框,其中值位于-0.2和0.4之间。要绘制直方图,我只是使用
sheet = pd.read_csv('Spread_Ratio.csv') #read excel sheet containing values df = sheet['Ratio'] #where the 'Ratio' col is just values between -0.2 and 0.4 df.hist() plt.show()
,它将返回以下直方图。