dynawo / dynawo-large-scale-validation

Scripts and utilities used for the Project "Validation of dynamic simulations made using the open source tool Dynawo".
MIT License
0 stars 2 forks source link

Change Pandas frame.append to pandas.concat (in dynaflow/pipeline/collect_aut_diffs.py) #16

Closed jl-marin closed 2 years ago

jl-marin commented 2 years ago

Warnings seen from:

dynaflow/pipeline/collect_aut_diffs.py:204: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  dataframeA = dataframeA.append(df_temp)

dynaflow/pipeline/collect_aut_diffs.py:229: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  dataframeB = dataframeB.append(df_temp)