我有一个CSV
包含如下数据的文件:
Time Pressure
1/1/2017 0:00 5.8253
... ...
3/1/2017 0:10 4.2785
4/1/2017 0:20 5.20041
5/1/2017 0:30 4.40774
6/1/2017 0:40 4.03228
7/1/2017 0:50 5.011924
12/1/2017 1:00 3.9309888
我想在压力数据上制作每月直方图(NORMALIZED),最后将图表写入 PDF。我知道我需要使用Groupby
和Numpy.hist
选项,但我不确定如何使用它们。(我是 Python 的新手)。请帮忙!
代码 1:
n = len(df) // 5
for tmp_df in (df[i:i+n] for i in range(0, len(df), n)):
gb_tmp = tmp_df.groupby(pd.Grouper(freq='M'))
ax = gb_tmp.hist()
plt.setp(ax.xaxis.get_ticklabels(),rotation=90)
plt.show()
plt.close()
这给了我以下错误消息:
ValueError: range() arg 3 must not be zero
代码 2:
df1 = df.groupby(pd.Grouper(freq='M'))
np.histogram(df1,bins=10,range=None,normed=True)
这将返回另一条错误消息:
ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
我尝试了上面的代码,但得到了这些错误。不确定我是否正确使用它。