matplotlib python inline on/off

前端 未结 4 1357
轻奢々
轻奢々 2020-12-05 08:51

If I start an ipython notebook with matplotlib inlined, is there a way to subsequently plot a figure so that it shows in the \"standard\", non-inlined, way, without having t

4条回答
  •  误落风尘
    2020-12-05 09:47

    plt.ioff() and plt.ion() works like a charm in my Jupyter notebook with the notebook as backend (assuming the usual import matplotlib.pyplot as plt).

提交回复
热议问题