I'm using Matplotlib's specgram function, which has a form like:
Pxx, freqs, bins, im = specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900)
where Pxx
, freqs
, bins
, and im
represent the periodogram, frequency vector, center of time bins, and the image.AxesImage instance. Additionally, you can feed in arguments (**kwargs
) that get passed onto imshow
.
I cannot seem to use specgram
in a Jupyter Notebook, without producing a plot automatically. What argument can I pass into specgram
that will stop it from plotting automatically?
I am not calling any plt.show()
command. I've tried adding a semi-colon at the end of the line, and I've tried setting the final argument (im
) as nothing, like this:
Pxx, freqs, bins, _ = specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900);
but nothing seems to work.
From the PyPlot.jl docs: https://github.com/JuliaPy/PyPlot.jl#non-interactive-plotting
See the docs linked above for further reference.