In pandas, df.append is deprecated in favor of pd.concat, which takes a list of DataFrames (or Series) and returns a combined one. We should implement bpd.concat and remove df.append.
This isn't super core since we don't mention it in class, but it occasionally comes up in projects.
In pandas,
df.append
is deprecated in favor ofpd.concat
, which takes a list of DataFrames (or Series) and returns a combined one. We should implementbpd.concat
and removedf.append
.This isn't super core since we don't mention it in class, but it occasionally comes up in projects.