使用键列表访问嵌套字典

时间:2014-05-11 19:00:47

标签: python dictionary pandas

我有一本字典:

k_msc = {5.7:{50: 1 , 125: 0.5 ,200: 0.1}, 6.2:{50: 1 , 125: 0.5 ,200: 0.1}, 6.7:{50: 1 , 125: 0.5 ,200: 0.1}}

和一个熊猫数据框。像:

(     Std   pH  nacl  a2  a4  surfcov_msc  amount_mp  amount_a2  \
Run                                                                         
1     10  6.2   125      0.6       1.0         0.90      0.030       0.10   
2     21  6.2    50      1.0       0.7         0.90      0.005       0.25   
3     25  6.2   125      0.6       0.7         0.45      0.005       0.40   
4     20  5.7   125      1.0       0.7         0.00      0.030       0.10   
5     13  6.2   200      1.0       1.0         0.00      0.005       0.25   `

我确实想要访问存储在k_msc中的值,具体取决于pH和nacl列中的值:

def get_dict(mydict,mylist):
    a = list(zip( *[x for x in  mylist  ] ))
    list_items = [mydict[ x[0] ][ x[1] ] for x in a]
    return list_items

访问值:

get_dict(k_msc, (df.pH, df.nacl))

这有点奇怪。是否有更简单/更清晰的方式?

0 个答案:

没有答案