diff --git a/Chapter_3_GettingStarted/BaselineModeling.ipynb b/Chapter_3_GettingStarted/BaselineModeling.ipynb index 78fae71..9aba5ca 100644 --- a/Chapter_3_GettingStarted/BaselineModeling.ipynb +++ b/Chapter_3_GettingStarted/BaselineModeling.ipynb @@ -1260,7 +1260,7 @@ " prediction_feature='predictions', top_k_list=top_k_list)\n", " performances_model.index=[classifier_name]\n", " \n", - " performances=performances.append(performances_model)\n", + " performances=pd.concat([performances, performances_model], ignore_index=False)\n", " \n", " return performances" ]