标签: python
我的dataFrame看起来像这样。
A = [Buy,Hold,Sell,Buy,Hold,Sell] B = [Buy,Hold,Sell,Hold,Hold,Buy]
如何比较2列并创建一个新的C列,显示A列= B列
C应该像C= [Buy, Hold, Sell,None, None, None]
C= [Buy, Hold, Sell,None, None, None]
答案 0 :(得分:0)
尝试一下:
df['C'] = np.where(df['A'] == df['B'], df['A'], None)