cobra icon indicating copy to clipboard operation
cobra copied to clipboard

fix(FutureWarnings): replace .append by pd.concat

Open patrickleonardy opened this issue 1 year ago • 0 comments

Story Title

Update code to not raise any FutureWarnings

Changes made

  • replaced df.append(new_row) by pd.concat([df, new_row)

How does the solution address the problem

We use the pd.concat method to do the same. see: Pandas docs

Linked issues

Resolves #190

patrickleonardy avatar Nov 28 '23 18:11 patrickleonardy