我想为每个唯一的站点值创建一个新的数据帧。
我在下面试过,它只给我在dataframe = tai_new.i
中更新的最后一站数据tai['station'].unique() has 500 values.
for i in tai['station'].unique():
tai_new.i = tai[tai_2['station'] ==i]
另一种方法是创建一个单独的
列表tai_stations = tai['station'].unique()
然后创建两个循环,但我不想输入500(IF)条件。
答案 0 :(得分:2)
您可以通过将groupby
对象转换为dict
s然后转换为DataFrames
来创建tuple
dict
:
dfs = dict(tuple(tai.groupby('station')))
样品:
tai = pd.DataFrame({'A':list('abcdef'),
'B':[4,5,4,5,5,4],
'C':[7,8,9,4,2,3],
'D':[1,3,5,7,1,0],
'E':[5,3,6,9,2,4],
'station':list('aabbcc')})
print (tai)
A B C D E station
0 a 4 7 1 5 a
1 b 5 8 3 3 a
2 c 4 9 5 6 b
3 d 5 4 7 9 b
4 e 5 2 1 2 c
5 f 4 3 0 4 c
dfs = dict(tuple(tai.groupby('station')))
#select each DataFrame by key - name of station
print (dfs['a'])
A B C D E station
0 a 4 7 1 5 a
1 b 5 8 3 3 a
print (type(dfs['a']))
<class 'pandas.core.frame.DataFrame'>
答案 1 :(得分:0)
请使用此
for i in tai [&#39; station&#39;]。unique(): tai_new [i] = tai [tai_2 [&#39; station&#39;] == i]
假设tai_new是一个字典。