Hi Jordi,
just use show=False and make adjustments on the resulting figure before
showing or saving it.
import matplotlib.pyplot as plt
fig = ppsd.plot_spectrogram(..., show=False)
fig.axes[0].set_ylim(..., ...)
plt.show()
best,
Tobias
Hi Jordi,
just use show=False and make adjustments on the resulting figure before
showing or saving it.
import matplotlib.pyplot as plt
fig = ppsd.plot_spectrogram(..., show=False)
fig.axes[0].set_ylim(..., ...)
plt.show()
best,
Tobias