def region(reg,new_reg):
for i in reg.country:
for j in new_reg.Country:
for k in new_reg.Continent:
if i==j:
reg.Continent=k
我如何改进这一点,这需要花费很多时间,这是在蟒蛇熊猫中。 reg和new_reg是数据帧,都包含字符串。如果reg.country和new_reg.country中存在匹配项,我想更新reg.continent与来自new_reg.continent的匹配数据值,如果reg.country和new_reg.country匹配,则记住reg.continent是一个没有价值的新数据框。
答案 0 :(得分:0)
viewForZoom