ENH: Add inplace argument for df.join() · Issue #47458 · pandas-dev/pandas (original) (raw)
Is your feature request related to a problem?
Adding inplace
argument for df.join()
will be more in line with Pandas environment.
Describe the solution you'd like
Add an inplace
parameter in df.join()
so that it becomesdf.join(obj,.... inplace=False)
API breaking implications
None
Describe alternatives you've considered
Alternative is to assign the new df in place of old df by doingdf = df.join(other_df)