我有一个时间序列数据,我将其分组,并且想将所有组的数字列相加。
注意:这不是各个组的列的聚合,而是组对象中所有数据帧的相应单元格的总和。
由于它是时间序列数据,因此数据帧中的一些列本质上保持相同,例如Region
和Region_Code
本身Time
在数据帧中保持相同。
我的伪代码是 -
通过...分组Region_Code
仅选择分组对象的数字列
制作区域列表
通过迭代区域列表和求和来调用组对象中的数据框
让其他列像Region
,Region_Code
和Time
但问题是,当我添加带有空数据帧的调用数据帧时,所有内容都变成空/空,所以最终我什么都没有。
import pandas as pd
countries = ['United States','United States','United States','United States','United States', 'Canada', 'Canada', 'Canada', 'Canada', 'Canada', 'China', 'China', 'China', 'China', 'China']
code = ['US', 'US','US','US','US','CAN','CAN','CAN','CAN','CAN', 'CHN','CHN','CHN','CHN','CHN']
time = [1,2,3,4,5,1,2,3,4,5,1,2,3,4,5]
temp = [2.1,2.2,2.3,2.4,2.5, 3.1,3.2,3.3,3.4,3.5, 4.1,4.2,4.3,4.4,4.5]
pressure = [1.0,1.0,1.0,1.0,1.0, 1.1, 1.1, 1.1, 1.1, 1.1, 1.2,1.2,1.2,1.2,1.2]
speed = [20,21,22,23,24, 10,11,12,13,14, 30,31,32,33,34]
df = pd.DataFrame({'Region': countries, 'Time': time, 'Region_Code': code, 'Temperature': temp, 'Pressure': pressure, 'Speed': speed})
countries_grouped = df.groupby('Region_Code')[list(df.columns)[3:]]
country_list = ['US', 'CAN', 'CHN']
temp = pd.DataFrame()
for country in country_list:
temp += countries_grouped.get_group(country) ## <--- Fails
temp
# Had the above worked, the rest of the columns can be made as follows
temp['Region'] = 'All'
temp['Time'] = df['Time']
temp['Region_Code'] = 'ALL'
它看起来并不可潘多拉。最好的方法是什么?
预期输出:
Region Time Region_Code Temperature Pressure Speed
0 All 1 ALL 9.3 3.3 60
1 All 2 ALL 9.6 3.3 63
2 All 3 ALL 9.9 3.3 66
3 All 4 ALL 10.2 3.3 69
4 All 5 ALL 10.5 3.3 72
慕神8447489
相关分类