Pandas迭代行并找到列名

nou*_*ous 4 python loops pandas

我有两个数据帧:

df = pd.DataFrame({'America':["Ohio","Utah","New York"],
                   'Italy':["Rome","Milan","Venice"],
                   'Germany':["Berlin","Munich","Jena"]});


df2 = pd.DataFrame({'Cities':["Rome", "New York", "Munich"],
                   'Country':["na","na","na"]})
Run Code Online (Sandbox Code Playgroud)

我想在df2"城市"列上找到我的(df)上的城市,并将城市的国家/地区(df列名称)附加到df2国家/地区列

jez*_*ael 9

meltmap字典一起使用:

df1 = df.melt()
print (df1)
  variable     value
0  America      Ohio
1  America      Utah
2  America  New York
3    Italy      Rome
4    Italy     Milan
5    Italy    Venice
6  Germany    Berlin
7  Germany    Munich
8  Germany      Jena

df2['Country'] = df2['Cities'].map(dict(zip(df1['value'], df1['variable'])))
#alternative, thanks @Sandeep Kadapa 
#df2['Country'] = df2['Cities'].map(df1.set_index('value')['variable'])
print (df2)
     Cities  Country
0      Rome    Italy
1  New York  America
2    Munich  Germany
Run Code Online (Sandbox Code Playgroud)

  • 或者``df2 ['Cities'].map(df1.set_index('value')['variable'])` (3认同)