删除熊猫中的重复列
要完全删除In [935]: df_int = df1.select_dtypes(include=['int'])
In [933]: df_other = df1.select_dtypes(exclude=['int'])
In [949]: if df_int.T.drop_duplicates().shape[0] == 1:
...: res = pd.concat([df_int.iloc[:,0]
我尝试删除熊猫中具有重复数据的列,例如以下数据(它们具有相同的数据,但列名称不同):
<pre><