Replies: 3 comments 1 reply
-
we should use this function: to read experimental data for comparison |
Beta Was this translation helpful? Give feedback.
0 replies
-
You probably need a button in the GUI called "Load dipole" |
Beta Was this translation helpful? Give feedback.
1 reply
-
By the way, you should store the figure handles in the GUI object. Initialize them to None and then add them to a dictionary after plotting is done: class HNNGUI:
def __init__(self):
self.figs = None
def _plot_dipole():
with self.plot_outputs['L']:
fig = dpl.plot()
self.figs['L'] = fig something like this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To write tutorials for the new GUI, it seems we need to consider comparing model output and recorded data. Any ideas on how to integrate this into the new GUI? Like the layout, button, logic, etc. Or if it's not of the highest priority, we can leave it aside temporarily. @jasmainak
Beta Was this translation helpful? Give feedback.
All reactions