How do I combine two dataframes?

Deprecation Notice: DataFrame.append and Series.append were deprecated in v1.4.0

I believe you can use the append method

bigdata = data1.append(data2, ignore_index=True)

to keep their indexes just don’t use the ignore_index keyword…

Leave a Comment