Skip to content

Commit 38bef94

Browse files
committed
Merge branch 'fix-sv-properties' of github.com:alejoe91/spikeinterface into fix-sv-properties
2 parents 33611b0 + 25fd853 commit 38bef94

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/spikeinterface/widgets/crosscorrelograms.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ def plot_matplotlib(self, data_plot, **backend_kwargs):
117117
color = "k"
118118
ax.bar(x=bins[:-1], height=ccg, width=bin_width, color=color, align="edge")
119119

120+
if i < len(self.axes) - 1:
121+
self.axes[i, j].set_xticks([], [])
122+
plt.tight_layout()
123+
120124
for i, unit_id in enumerate(unit_ids):
121125
self.axes[0, i].set_title(str(unit_id))
122126
self.axes[-1, i].set_xlabel("CCG (ms)")

0 commit comments

Comments
 (0)