我在 DataFrame 中有一个带有国家/地区代码的列,我想将其转换为名称以使用该库绘制图表pycountry
def get_country(n):
country = countries.get(alpha_2 = n)
return country.name
我想像这样在DataFrame上使用上面的功能
df['country'] = df['country'].apply(get_country)
我得到这个错误
AttributeError: 'NoneType' object has no attribute 'name'