Adr*_*ien 5 python pandas pandas-groupby
我正在尝试使用自定义范围对日期进行分组groupby
,但cut
到目前为止尚未成功。从返回的错误消息来看,我想知道 cut 是否正在尝试将我的日期处理为数字。
我想df1['date']
按自定义日期范围进行分组,然后对df1['HDD']
值求和。自定义范围位于df2
:
import pandas as pd
df1 = pd.DataFrame( {'date': ['2/1/2015', '3/2/2015', '3/3/2015', '3/4/2015','4/17/2015','5/12/2015'],
'HDD' : ['7.5','8','5','23','11','55']})
HDD date
0 7.5 2/1/2015
1 8 3/2/2015
2 5 3/3/2015
3 23 3/4/2015
4 11 4/17/2015
5 55 5/12/2015
Run Code Online (Sandbox Code Playgroud)
df2
具有自定义日期范围:
df2 = pd.DataFrame( {'Period': ['One','Two','Three','Four'],
'Start Dates': ['1/1/2015','2/15/2015','3/14/2015','4/14/2015'],
'End Dates' : ['2/14/2015','3/13/2015','4/13/2015','5/10/2015']})
Period Start Dates End Dates
0 One 1/1/2015 2/14/2015
1 Two 2/15/2015 3/13/2015
2 Three 3/14/2015 4/13/2015
3 Four 4/14/2015 5/10/2015
Run Code Online (Sandbox Code Playgroud)
我所需的输出是按自定义日期范围进行分组df1
并聚合每个期间的 HDD 值。应该输出类似这样的内容:
Period HDD
0 One 7.5
1 Two 36
2 Three 0
3 Four 11
Run Code Online (Sandbox Code Playgroud)
以下是我尝试使用自定义分组的一个示例:
df3 = df1.groupby(pd.cut(df1['date'], df2['Start Dates'])).agg({'HDD': sum})
Run Code Online (Sandbox Code Playgroud)
...这是我得到的错误:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-103-55ea779bcd73> in <module>()
----> 1 df3 = df1.groupby(pd.cut(df1['date'], df2['Start Dates'])).agg({'HDD': sum})
/opt/conda/lib/python3.5/site-packages/pandas/tools/tile.py in cut(x, bins, right, labels, retbins, precision, include_lowest)
112 else:
113 bins = np.asarray(bins)
--> 114 if (np.diff(bins) < 0).any():
115 raise ValueError('bins must increase monotonically.')
116
/opt/conda/lib/python3.5/site-packages/numpy/lib/function_base.py in diff(a, n, axis)
1576 return diff(a[slice1]-a[slice2], n-1, axis=axis)
1577 else:
-> 1578 return a[slice1]-a[slice2]
1579
1580
TypeError: unsupported operand type(s) for -: 'str' and 'str'
Run Code Online (Sandbox Code Playgroud)
感谢您提供的任何建议!
如果您将所有日期从 dtype 字符串转换为日期时间,则此方法有效。
df1['date'] = pd.to_datetime(df1['date'])
df2['End Dates'] = pd.to_datetime(df2['End Dates'])
df2['Start Dates'] = pd.to_datetime(df2['Start Dates'])
df1['HDD'] = df1['HDD'].astype(float)
df1.groupby(pd.cut(df1['date'], df2['Start Dates'])).agg({'HDD': sum})
Run Code Online (Sandbox Code Playgroud)
输出:
HDD
date
(2015-01-01, 2015-02-15] 7.5
(2015-02-15, 2015-03-14] 36.0
(2015-03-14, 2015-04-14] NaN
Run Code Online (Sandbox Code Playgroud)
添加标签:
df1.groupby(pd.cut(df1['date'], df2['Start Dates'], labels=df2.iloc[:-1,1])).agg({'HDD': sum})
Run Code Online (Sandbox Code Playgroud)
输出:
HDD
date
One 7.5
Two 36.0
Three NaN
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
3198 次 |
最近记录: |