diff --git a/src/spikeanalysis/intrinsic_plotter.py b/src/spikeanalysis/intrinsic_plotter.py index 92a0524..e31a59a 100644 --- a/src/spikeanalysis/intrinsic_plotter.py +++ b/src/spikeanalysis/intrinsic_plotter.py @@ -148,7 +148,7 @@ def plot_waveforms(self, sp: SpikeData): current_waves = waveforms[cluster, :, max_channel, :] current_mean = mean_waveforms[cluster, max_channel, :] - if np.shape(current_waves)[0] > 30: + if np.shape(current_waves)[0] > 300: WAVES = 300 else: WAVES = np.shape(current_waves)[0] @@ -317,7 +317,7 @@ def _plot_cdf_pdf(self, df: pd.DataFrame): else: plt.ylabel("Depth (µm)") - plt.xlabel("Amplitude (µV)") + plt.xlabel("Amplitude (AU)") plt.figure(dpi=self.dpi) plt.show()