PANDAS menetapkan nilai ke baris berdasarkan kondisi

df.loc[df['stream'] == 2, ['feat','another_feat']] = 'a', 'b'
Elijah