Skip to content
Snippets Groups Projects
Commit a26bc431 authored by Didi Hou's avatar Didi Hou
Browse files

update MAM2EBRAINS.py

parent 12e4e932
No related branches found
No related tags found
1 merge request!35Pre-release MAM v1.1.0
......@@ -18,7 +18,7 @@ ecolor = myblue
# Instantaneous and mean firing rate across all populations
def plot_instan_mean_firing_rate(tsteps, rate, sim_params):
fig, ax = pl.subplots()
ax = pl.subplots()
ax.plot(tsteps, rate)
ax.plot(tsteps, np.average(rate)*np.ones(len(tsteps)), label='mean')
ax.set_title('Instantaneous and mean firing rate across all populations')
......@@ -67,7 +67,7 @@ def set_boxplot_props(d):
pl.setp(d['means'], marker='x', color='k',
markerfacecolor='k', markeredgecolor='k', markersize=3.)
def plot_resting_state():
def plot_resting_state(A):
"""
Figure layout
"""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment