本文整理汇总了Python中ipykernel.pylab.config.InlineBackend.instance方法的典型用法代码示例。如果您正苦于以下问题:Python InlineBackend.instance方法的具体用法?Python InlineBackend.instance怎么用?Python InlineBackend.instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ipykernel.pylab.config.InlineBackend
的用法示例。
在下文中一共展示了InlineBackend.instance方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set_matplotlib_formats
# 需要导入模块: from ipykernel.pylab.config import InlineBackend [as 别名]
# 或者: from ipykernel.pylab.config.InlineBackend import instance [as 别名]
def set_matplotlib_formats(*formats, **kwargs):
"""Select figure formats for the inline backend. Optionally pass quality for JPEG.
For example, this enables PNG and JPEG output with a JPEG quality of 90%::
In [1]: set_matplotlib_formats('png', 'jpeg', quality=90)
To set this in your config files use the following::
c.InlineBackend.figure_formats = {'png', 'jpeg'}
c.InlineBackend.print_figure_kwargs.update({'quality' : 90})
Parameters
----------
*formats : strs
One or more figure formats to enable: 'png', 'retina', 'jpeg', 'svg', 'pdf'.
**kwargs :
Keyword args will be relayed to ``figure.canvas.print_figure``.
"""
from IPython.core.interactiveshell import InteractiveShell
from IPython.core.pylabtools import select_figure_formats
# build kwargs, starting with InlineBackend config
kw = {}
from ipykernel.pylab.config import InlineBackend
cfg = InlineBackend.instance()
kw.update(cfg.print_figure_kwargs)
kw.update(**kwargs)
shell = InteractiveShell.instance()
select_figure_formats(shell, formats, **kw)
示例2: set_matplotlib_close
# 需要导入模块: from ipykernel.pylab.config import InlineBackend [as 别名]
# 或者: from ipykernel.pylab.config.InlineBackend import instance [as 别名]
def set_matplotlib_close(close=True):
"""Set whether the inline backend closes all figures automatically or not.
By default, the inline backend used in the IPython Notebook will close all
matplotlib figures automatically after each cell is run. This means that
plots in different cells won't interfere. Sometimes, you may want to make
a plot in one cell and then refine it in later cells. This can be accomplished
by::
In [1]: set_matplotlib_close(False)
To set this in your config files use the following::
c.InlineBackend.close_figures = False
Parameters
----------
close : bool
Should all matplotlib figures be automatically closed after each cell is
run?
"""
from ipykernel.pylab.config import InlineBackend
cfg = InlineBackend.instance()
cfg.close_figures = close
示例3: _get_inline_config
# 需要导入模块: from ipykernel.pylab.config import InlineBackend [as 别名]
# 或者: from ipykernel.pylab.config.InlineBackend import instance [as 别名]
def _get_inline_config():
from ipykernel.pylab.config import InlineBackend
return InlineBackend.instance()