Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions autoemulate/history_matching_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
import numpy as np
import pandas as pd
import seaborn as sns
from IPython.display import clear_output
from IPython.display import display
from IPython.display import clear_output, display
from sklearn.decomposition import PCA


Expand Down Expand Up @@ -401,6 +400,7 @@ def _update_plot(self, _):
self._plot_bayesian_style_comparison(filtered_df, filtered_scores)
elif plot_type == "Wave Evolution":
self._plot_wave_evolution(filtered_df, filtered_scores)
plt.show()

except Exception as e:
plt.figure(figsize=(10, 6))
Expand Down
Loading