我想创建一个新列,如果以下条件为真,则返回值 1,如果为假,则返回值 2,并且不确定为什么以下条件不起作用?
t1 = x['timestamp_1'] < x['timestamp_2']
x['new'] = np.select([t1], [1], default=2)
相关分类