Manipulate inline figure in IPython notebook

前端 未结 2 1038
滥情空心
滥情空心 2021-01-01 05:24

I am using IPython 0.12.1 notebook to connect from a Windows machine to a Linux server where the IPython kernel runs. Since the Linux machine doesn\'t have an X-Server insta

相关标签:
2条回答
  • 2021-01-01 05:31

    You can enter this magic configuration:

    %config InlineBackend.close_figures = False
    
    0 讨论(0)
  • 2021-01-01 05:52

    I ended up setting the following in the ipython notebook configuration file:

    c.InlineBackend.close_figures = False
    

    The figures are editable but I have to close them myself instead which I do by close('all')

    0 讨论(0)
提交回复
热议问题