标签: python pandas numpy
是否有pandas等效的numpy.where,它允许您更改值,以便根据条件(True / False)选择两个选项?但是,pandas.where类似,但不是我想要的。
pandas
numpy.where
pandas.where
答案 0 :(得分:2)
直接使用numpy.where();
numpy.where()
df['column'] = np.where(df['column'] > 50, 100, 0)