python dataframe update if not new row

Solutions on MaxInterview for python dataframe update if not new row by the best coders in the world

showing results for - "python dataframe update if not new row"
Kenny
07 Nov 2018
1pd.concat([df1[~df1.index.isin(df2.index)], df2])
2