我想将一个分类变量的值更改other
为以下条件['value1','value2']
这是我的代码:
random_sample['NAME_INCOME_TYPE_ind'] = np.where(random_sample['NAME_INCOME_TYPE'] in ['Maternity leave', 'Student']), 'Other')
我尝试.any()
在这行代码的不同位置添加,但仍然无法解决错误。ValueError:系列的真值不明确。使用 a.empty、a.bool()、a.item()、a.any() 或 a.all()。
慕盖茨4494581
相关分类