Skip to content

Commit

Permalink
Fix for plotting method
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Nov 9, 2023
1 parent c94491d commit 768aca0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c302/c302_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import matplotlib.pyplot as plt
import numpy as np
from pyneuroml import pynml
from pyneuroml import plot as pyneuroml_plot
from owmeta_core.bundle import Bundle

import c302
Expand Down Expand Up @@ -92,7 +93,7 @@ def generate_traces_plot(config,parameter_set,xvals,yvals,info,labels,save,save_

file_name = 'traces_%s%s_%s_%s.png'%(('muscles' if muscles else 'neuron'),('' if voltage else '_activity'),config,parameter_set)

pynml.generate_plot(xvals,
pyneuroml_plot.generate_plot(xvals,
yvals,
info,
labels=labels,
Expand Down

0 comments on commit 768aca0

Please sign in to comment.