根据条件使用pandas更改值

时间:2017-04-30 07:59:06

标签: python pandas numpy

是否有pandas等效的numpy.where,它允许您更改值,以便根据条件(True / False)选择两个选项?但是,pandas.where类似,但不是我想要的。

1 个答案:

答案 0 :(得分:2)

直接使用numpy.where();

df['column'] = np.where(df['column'] > 50, 100, 0)