我有2個不同的數據框。 第一個是這樣的:熊貓數據框查找不同數據框中的值並指定值
joint label x z y pt
0 1 NaN 50.4 0.0 -8.40 10
1 2 shell 52.2 0.0 -8.40 20
2 3 shell 54.0 0.0 -8.40 30
3 4 shell 55.8 0.0 -8.40 40
4 5 shell 57.6 0.0 -8.40 50
和我的第二個數據幀的樣子:
member joint1 joint2 joint1_pt joint2_pt
0 1 1 2 0 0
1 2 2 3 0 0
2 3 3 4 0 0
3 4 4 5 0 0
我想採取使用PT值是在一個特定的jointe對應和使用第二個數據幀如下所示:
member joint1 joint2 joint1_pt joint2_pt
0 1 1 2 10 20
1 2 2 3 20 30
2 3 3 4 30 40
3 4 4 5 40 50
你能幫我一個例子/理想我該如何解決這個問題? 提前謝謝!
你可以用'pd.DataFrame.to_dict' (像[這](http://stackoverflow.com/questions/18012505/python-pandas-dataframe-columns-convert-to-dict-key - 和值))和'pd.Series.map'(如[this](http://stackoverflow.com/questions/35561517/mapping-values-into-a-new-dataframe-column))。 –