first plot works
This commit is contained in:
parent
9150263bdd
commit
b14fc1a294
@ -48,9 +48,16 @@ if __name__ == '__main__':
|
|||||||
data_set + '.nix'))
|
data_set + '.nix'))
|
||||||
print(len(spike_data))
|
print(len(spike_data))
|
||||||
stims = []
|
stims = []
|
||||||
# for i in range(len(stim_pos)):
|
for i in range(len(stim_pos)):
|
||||||
# embed()
|
stim_y = [-38, -38]
|
||||||
# plt.plot(stim_pos)
|
plt.plot([stim_pos[i], stim_pos[i] + stim_extent[i]], stim_y, 'k')
|
||||||
plt.plot(dims[:-1], voltage_trace[:-1])
|
plt.plot(dims[:-1], voltage_trace[:-1])
|
||||||
plt.scatter(spike_data[:-1], np.ones(len(spike_data)-1)*np.max(voltage_trace))
|
spike_y = np.ones(len(spike_data))*80
|
||||||
|
|
||||||
|
for j in range(len(spike_data)):
|
||||||
|
print('length of current spike train: ', len(spike_data))
|
||||||
|
for k in range(len(spike_data[j])):
|
||||||
|
print('current spike time is: ', spike_data[j][k])
|
||||||
|
plt.plot(spike_data[j][k], -40, 'o', color='k')
|
||||||
|
plt.ylim([-100, -30])
|
||||||
plt.show()
|
plt.show()
|
Loading…
Reference in New Issue
Block a user