epfl-lts2 / pygsp

Graph Signal Processing in Python
https://pygsp.rtfd.io
BSD 3-Clause "New" or "Revised" License
483 stars 93 forks source link

plotting.plot_spectogram not working on Jupyter-Notebook #25

Closed divyanshusrivastava closed 6 years ago

divyanshusrivastava commented 6 years ago

This is also the case when the backend is chosen as 'pyqtgraph' for any plotting function call. The screen gets stuck on an empty window, and the kernel dies on closing it.

mdeff commented 6 years ago

As you discovered, plotting.plot_spectogram is only available with the pyqtgraph backend. It should be possible to use it from the notebook by invoking the %gui qt5 magic.

divyanshusrivastava commented 6 years ago

Indeed. It's working now.

Thanks.