- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugPlotter.py
More file actions
Latest commit
22 lines (18 loc) · 717 Bytes
/
Copy pathDebugPlotter.py
File metadata and controls
22 lines (18 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Jul 23 16:22:55 2019
@author: thugwithyoyo
"""
fig1, axs1=plt.subplots()
GenerateConfIntsPlot(ConfInts, Performance, PerformancePlotSpecDict,
axs1, 'fw_sliding')
axs1.set_xbound(lower=BoundaryWindow[0], upper=BoundaryWindow[1])
axs1.set_ybound(lower=0.4, upper=1.)
# Plot mutual information dependence on increasing peri-event window span
fig2, axs2=plt.subplots()
#fig2.suptitle(MutInfoPlotSpecDict['measure'])
GenerateConfIntsPlot(ConfInts, Performance, MutInfoPlotSpecDict,
axs2, 'fw_sliding')
axs2.set_xbound(lower=BoundaryWindow[0], upper=BoundaryWindow[1])
axs2.set_ybound(lower=0., upper=1.)