我想在表达式中替换变量名。但是我得到str不可调用的错误 这是我的例子
import numpy as np
import pandas as pd
raw_data = {'student_name': ['M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M7', 'M8', 'M9', 'M10', 'M11', 'M12'],
'vocal_grade': ['R', 'X', 'Y', 'Z', 'R', 'X', 'X', 'X', 'X', 'X', 'X', np.NaN]}
df = pd.DataFrame(raw_data, columns = ['student_name', 'vocal_grade'])
dict_sam_vocal = {'R': 8, 'X': 5, 'Y': 6, 'Z': 7}
这很好用
x = 'vocal'
df[x+'_score'] = df[x+"_grade"].map(dict_sam_vocal)
当我尝试参数化字典时,我收到以下错误
df[x+'_score'] = df[x+"_grade"].map("dict_sam_"+x)
pandas/src/inference.pyx in pandas.lib.map_infer (pandas/lib.c:63043)()
TypeError: 'str' object is not callable
答案 0 :(得分:0)
问题是你将一个字符串传递给map
,这个字符串在你的情况下是一个字典。为了使地图将其视为字典而不是字符串,请使用eval
来评估字符串并返回相应的字典:
x = 'vocal'
df[x+'_score'] = df[x+"_grade"].map(eval("dict_sam_"+x))
答案 1 :(得分:0)
您可以使用以下字符串调用dict_sam_vocal
:
df[x+'_score'] = df[x+"_grade"].map(globals()["dict_sam_"+x])