File: analyze_results.py

package info (click to toggle)
bmtk 0.0%2Bgit20210109.8572664%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 74,876 kB
  • sloc: python: 24,853; javascript: 1,998; makefile: 34; sh: 16
file content (8 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
import matplotlib.pyplot as plt

from bmtk.analyzer.spike_trains import plot_raster, plot_rates_boxplot


plot_raster(config_file='sim_ch04/simulation_config.json', group_by='pop_name', show=False)
plot_rates_boxplot(config_file='sim_ch04/simulation_config.json', group_by='pop_name', show=False)
plt.show()