我正在寻找一段时间,但我找不到解决问题的方法......
我有一个具有以下结构的csv:
date_time, country, temp, dc
2018-01-01 00:00:00, Germany, 12, 0
...
2018-01-01 00:00:00, Austria, 13, 3
...
2018-01-01 00:00:00, France, 4, 9
...
如您所见,date_time将重复。
我想使用python pandas来获得以下结构:
| | Germany | Austria | France
| | temp, dc | temp, dc | temp, dc
________________________________________________________
| 2018-01-01 00:00:00 | 12 , 0 | 13 , 3 | 4 , 9
我想获得两个标题..首先分隔国家/地区,其次是属性temp和dc。我的索引应该是date_time属性。
谢谢你的帮助!!!
答案 0 :(得分:3)
这会给你你想要的东西:
df.pivot_table(index='date_time', columns='country', values=['temp', 'dc']).swaplevel(axis=1).sort_index(axis=1)
#country Austria France Germany
# dc temp dc temp dc temp
#date_time
#1 3 13 9 4 0 12
答案 1 :(得分:0)
试试这个,
df =df.groupby('date_time').apply(lambda x:x.set_index(['date_time','country']).unstack()).swaplevel(axis=1).reset_index(level=1, drop=True)
输出:
country Austria France Germany Austria France Germany
temp temp temp dc dc dc
date_time
2018-01-01 00:00:00 13 4 12 3 9 0