Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Oct 4, 2023
1 parent 260aeb4 commit f76960e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeanalysis/spike_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ def plot_event_isi(self):
baseline = isis["bsl_isi"].sum(axis=1)
stimulus_isi = isis["isi"].sum(axis=1)
bins = isis["bins"]
for row in range(stimulus.shape[0]):
for row in range(stimulus_isi.shape[0]):
sub_bsl = baseline[row] / baseline[row].sum()
sub_stim_isi = stimulus_isi[row] / stimulus_isi[row].sum()

Expand Down

0 comments on commit f76960e

Please sign in to comment.