-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvoltplot_rew.py
52 lines (42 loc) · 1.46 KB
/
voltplot_rew.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import numpy as np
import json
import matplotlib
#matplotlib.use('Agg')
import pylab as pl
# Plot the different figures for the merged spikes and voltages recordings.
# This file, as the MergeSpikefiles.py should be one level up than Test/..., the output of a simulation.
fparam = 'Test/Parameters/simulation_parameters.json'
f = open(fparam, 'r')
params = json.load(f)
def extract_trace(d, gid):
"""
d : voltage trace from a saved with compatible_output=False
gid : cell_gid
"""
mask = gid * np.ones(d[:, 0].size)
indices = mask == d[:, 0]
time_axis, volt = d[indices, 1], d[indices, 2]
return time_axis, volt
#cells = ['d1', 'd2']
#recorder_type = 'volt'
#for cell in cells:
# for naction in xrange(params['n_actions']):
# data = np.loadtxt(params['spiketimes_folder']+str(naction)+cell+'_merged_'+recorder_type+'.dat')
# gids = np.unique(data[:,0])
# for gid in ngids:
# time_axis, volt = extract_trace(data, gid)
# pl.plot(time_axis, volt, label=gid, lw=2)
cells= ['rew']
recorder_type = 'volt'
nfig =0
for cell in cells:
fig = pl.figure(nfig)
for naction in xrange(params['n_actions']):
data = np.loadtxt(params['spiketimes_folder']+cell+'_merged_'+recorder_type+'.dat')
gids = np.unique(data[:,0])
for gid in gids:
d = data[data[:,0]==gid, 1:]
pl.plot( d[d[:,0].argsort(),1], label=str(int(gid)), lw=2)
nfig+=1
pl.title(cell)
pl.show()