Answers for "dataframe without duplicates of column"

1

concatenate dataframes pandas without duplicates

>>> df1
   A  B
0  1  2
1  3  1
>>> df2
   A  B
0  5  6
1  3  1
>>> pandas.concat([df1,df2]).drop_duplicates().reset_index(drop=True)
   A  B
0  1  2
1  3  1
2  5  6
Posted by: Guest on November-29-2020
2

remove duplicates based on two columns in dataframe

df.drop_duplicates(['A','B'],keep= 'last')
Posted by: Guest on August-13-2020

Code answers related to "dataframe without duplicates of column"

Python Answers by Framework

Browse Popular Code Answers by Language