我正在尝试将不同货币的价值转换为" USD"货币。我尝试了easymoney
和CurrencyConvertor
个软件包,但这些软件包似乎不适用于dataframe python。
如果我使用iloc
逐行进行转换似乎有效,但这需要花费大量时间。
from easymoney.money import EasyPeasy
ep = EasyPeasy()
ep.currency_converter(df_train['goal'], from_currency=df_train['currency'], to_currency="USD")
错误:
TypeError:无效的类型比较
答案 0 :(得分:2)
您需要使用apply
axis=1
按行处理:
from easymoney.money import EasyPeasy
ep = EasyPeasy()
df_train['converted'] = df_train.apply(lambda x: ep.currency_converter(x['goal'], from_currency=x['currency'], to_currency="USD"), axis=1)