Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmindset committed Oct 4, 2023
1 parent 8926495 commit 79e27f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions insolver/model_tools/model_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,5 @@ def _calc_metrics(self):
stats_df = stats_df[list(stats_df.columns[-2:]) + list(stats_df.columns[:-2])]
model_metrics = model_metrics[list(model_metrics.columns[-2:]) + list(model_metrics.columns[:-2])]

self.stats_results = self.stats_results.append(stats_df)
self.metrics_results = self.metrics_results.append(model_metrics)
self.stats_results = concat([self.stats_results, stats_df])
self.metrics_results = concat([self.metrics_results, model_metrics])

0 comments on commit 79e27f4

Please sign in to comment.