recommenders-team / recommenders

Best Practices on Recommendation Systems
https://recommenders-team.github.io/recommenders/intro.html
MIT License
18.81k stars 3.07k forks source link

[BUG] frame.append is deprecated #2023

Closed daviddavo closed 4 months ago

daviddavo commented 11 months ago

Description

Using the append method of a pandas dataframe or series is deprecated.

In which platform does it happen?

Python >= 3.9

How do we replicate the issue?

Use any method that uses append in a 3.9 environment and it will raise a FutureWarning

Expected behavior (i.e. solution)

No warning raised

Other Comments

Changing all the appends to concats is a straightforward task, it would be a good first issue. It would also be a step forward into #1919

miguelgfierro commented 4 months ago

@daviddavo is this fixed?

daviddavo commented 4 months ago

Yeah, it should be fixed with #2058