Skip to content

Commit

Permalink
fix keep_list in sm_fr
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Nov 27, 2023
1 parent ff7c5b1 commit 1a47ba0
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 @@ -528,7 +528,7 @@ def plot_sm_fr(
keep_list.append(np.where(cluster_indices == cid)[0][0])
keep_list = np.array(keep_list)
else:
keep_list = np.arange(0, len(cluster_indices), 1)
keep_list = np.arange(0, len(self.data.cluster_ids), 1)

stim_trial_groups = self._get_trial_groups()
event_lengths = self._get_event_lengths_all()
Expand Down

0 comments on commit 1a47ba0

Please sign in to comment.