##// END OF EJS Templates
mv IPython.zmq to IPython.kernel.zmq
mv IPython.zmq to IPython.kernel.zmq

File last commit:

r9372:37f32253
r9372:37f32253
Show More
backend_inline.py
215 lines | 8.1 KiB | text/x-python | PythonLexer
Fernando Perez
Fix svg rich backend to correctly show multiple figures.
r2890 """Produce SVG versions of active plots for display by the rich Qt frontend.
"""
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987 from __future__ import print_function
Fernando Perez
Fix svg rich backend to correctly show multiple figures.
r2890
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 # Standard library imports
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731 import sys
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731 # Third-party imports
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987 import matplotlib
Jens H. Nielsen
Provide default figure canvas for inline backend needed due to matplotlib...
r8388 from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 from matplotlib._pylab_helpers import Gcf
# Local imports.
MinRK
add InlineBackendConfig...
r3973 from IPython.config.configurable import SingletonConfigurable
MinRK
use display instead of send_figure in inline backend hooks...
r8157 from IPython.core.display import display
Brian Granger
Mostly final version of display data....
r3277 from IPython.core.displaypub import publish_display_data
Fernando Perez
Refactor gui/pylab integration to eliminate code duplication....
r5469 from IPython.core.pylabtools import print_figure, select_figure_format
MinRK
add InlineBackendConfig.close_figures configurable...
r5087 from IPython.utils.traitlets import Dict, Instance, CaselessStrEnum, CBool
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 from IPython.utils.warn import warn
MinRK
add InlineBackendConfig...
r3973 #-----------------------------------------------------------------------------
# Configurable for inline backend options
#-----------------------------------------------------------------------------
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 # inherit from InlineBackendConfig for deprecation purposes
MinRK
add InlineBackendConfig...
r3973 class InlineBackendConfig(SingletonConfigurable):
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 pass
class InlineBackend(InlineBackendConfig):
MinRK
add InlineBackendConfig...
r3973 """An object to store configuration of the inline backend."""
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 def _config_changed(self, name, old, new):
# warn on change of renamed config section
if new.InlineBackendConfig != old.InlineBackendConfig:
warn("InlineBackendConfig has been renamed to InlineBackend")
super(InlineBackend, self)._config_changed(name, old, new)
MinRK
add InlineBackendConfig...
r3973 # The typical default figure size is too large for inline use,
# so we shrink the figure size to 6x4, and tweak fonts to
MinRK
allow change of PNG DPI in inline backend...
r5292 # make that fit.
MinRK
add InlineBackendConfig...
r3973 rc = Dict({'figure.figsize': (6.0,4.0),
Takafumi Arakaki
Make BG color of inline plot configurable...
r7798 # play nicely with white background in the Qt and notebook frontend
'figure.facecolor': 'white',
'figure.edgecolor': 'white',
MinRK
add InlineBackendConfig...
r3973 # 12pt labels get cutoff on 6x4 logplots, so use 10pt.
'font.size': 10,
MinRK
allow change of PNG DPI in inline backend...
r5292 # 72 dpi matches SVG/qtconsole
# this only affects PNG export, as SVG has no dpi setting
'savefig.dpi': 72,
MinRK
add InlineBackendConfig...
r3973 # 10pt still needs a little more room on the xlabel:
'figure.subplot.bottom' : .125
}, config=True,
help="""Subset of matplotlib rcParams that should be different for the
inline backend."""
)
MinRK
allow change of PNG DPI in inline backend...
r5292
MinRK
add InlineBackendConfig...
r3973 figure_format = CaselessStrEnum(['svg', 'png'], default_value='png', config=True,
help="The image format for figures with the inline backend.")
MinRK
fix double-encoding of png data...
r4005 def _figure_format_changed(self, name, old, new):
MinRK
add InlineBackendConfig...
r3973 if self.shell is None:
return
else:
select_figure_format(self.shell, new)
MinRK
add InlineBackendConfig.close_figures configurable...
r5087
close_figures = CBool(True, config=True,
help="""Close all figures at the end of each cell.
When True, ensures that each cell starts with no active figures, but it
also means that one must keep track of references in order to edit or
redraw figures in subsequent cells. This mode is ideal for the notebook,
where residual plots from other cells might be surprising.
When False, one must call figure() to create new figures. This means
that gcf() and getfigs() can reference figures created in other cells,
and the active figure can continue to be edited with pylab/pyplot
methods that reference the current active figure. This mode facilitates
iterative editing of figures, and behaves most consistently with
other matplotlib backends, but figure barriers between cells must
be explicit.
""")
MinRK
add InlineBackendConfig...
r3973
shell = Instance('IPython.core.interactiveshell.InteractiveShellABC')
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756
Fernando Perez
Fix svg rich backend to correctly show multiple figures.
r2890 #-----------------------------------------------------------------------------
# Functions
#-----------------------------------------------------------------------------
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756
MinRK
add InlineBackendConfig.close_figures configurable...
r5087 def show(close=None):
"""Show all figures as SVG/PNG payloads sent to the IPython clients.
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987
Parameters
----------
close : bool, optional
If true, a ``plt.close('all')`` call is automatically issued after
MinRK
don't close figures every cycle in inline backend...
r5086 sending all the figures. If this is set, the figures will entirely
Brian Granger
Lots of work on the display system, focused on pylab stuff....
r3280 removed from the internal list of figures.
epatters
Initial checkin of (not yet working) matplotlib payload backend and associated machinery.
r2756 """
MinRK
add InlineBackendConfig.close_figures configurable...
r5087 if close is None:
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 close = InlineBackend.instance().close_figures
MinRK
don't unregister interrupted post-exec functions...
r5346 try:
for figure_manager in Gcf.get_all_fig_managers():
MinRK
use display instead of send_figure in inline backend hooks...
r8157 display(figure_manager.canvas.figure)
MinRK
don't unregister interrupted post-exec functions...
r5346 finally:
show._to_draw = []
if close:
matplotlib.pyplot.close('all')
MinRK
add InlineBackendConfig.close_figures configurable...
r5087
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987
Brian Granger
Lots of work on the display system, focused on pylab stuff....
r3280
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987 # This flag will be reset by draw_if_interactive when called
show._draw_called = False
MinRK
don't close figures every cycle in inline backend...
r5086 # list of figures to draw when flush_figures is called
show._to_draw = []
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987
def draw_if_interactive():
"""
Is called after every pylab drawing command
"""
Fernando Perez
Add show() method to figure objects....
r6517 # signal that the current active figure should be sent at the end of
# execution. Also sets the _draw_called flag, signaling that there will be
# something to send. At the end of the code execution, a separate call to
# flush_figures() will act upon these values
MinRK
don't close figures every cycle in inline backend...
r5086 fig = Gcf.get_active().canvas.figure
Fernando Perez
Add show() method to figure objects....
r6517
# Hack: matplotlib FigureManager objects in interacive backends (at least
# in some of them) monkeypatch the figure object and add a .show() method
# to it. This applies the same monkeypatch in order to support user code
# that might expect `.show()` to be part of the official API of figure
# objects.
# For further reference:
# https://github.com/ipython/ipython/issues/1612
# https://github.com/matplotlib/matplotlib/issues/835
MinRK
don't close figures every cycle in inline backend...
r5086
Fernando Perez
Add show() method to figure objects....
r6517 if not hasattr(fig, 'show'):
# Queue up `fig` for display
MinRK
use display instead of send_figure in inline backend hooks...
r8157 fig.show = lambda *a: display(fig)
Fernando Perez
Add show() method to figure objects....
r6517
# If matplotlib was manually set to non-interactive mode, this function
# should be a no-op (otherwise we'll generate duplicate plots, since a user
# who set ioff() manually expects to make separate draw/show calls).
if not matplotlib.is_interactive():
return
MinRK
don't close figures every cycle in inline backend...
r5086 # ensure current figure will be drawn, and each subsequent call
# of draw_if_interactive() moves the active figure to ensure it is
# drawn last
try:
show._to_draw.remove(fig)
except ValueError:
# ensure it only appears in the draw list once
pass
Fernando Perez
Add show() method to figure objects....
r6517 # Queue up the figure for drawing in next show() call
MinRK
don't close figures every cycle in inline backend...
r5086 show._to_draw.append(fig)
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987 show._draw_called = True
Fernando Perez
Add show() method to figure objects....
r6517
MinRK
add InlineBackendConfig...
r3973 def flush_figures():
MinRK
don't close figures every cycle in inline backend...
r5086 """Send all figures that changed
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987
This is meant to be called automatically and will call show() if, during
prior code execution, there had been any calls to draw_if_interactive.
MinRK
protect flush_figures post-exec function from user error...
r5735
This function is meant to be used as a post_execute callback in IPython,
so user-caused errors are handled with showtraceback() instead of being
allowed to raise. If this function is not called from within IPython,
then these exceptions will raise.
Fernando Perez
Add support for simultaneous interactive and inline matplotlib plots....
r2987 """
MinRK
don't close figures every cycle in inline backend...
r5086 if not show._draw_called:
return
MinRK
add InlineBackendConfig.close_figures configurable...
r5087
MinRK
Rename InlineBackendConfig -> InlineBackend...
r5227 if InlineBackend.instance().close_figures:
MinRK
add InlineBackendConfig.close_figures configurable...
r5087 # ignore the tracking, just draw and close all figures
MinRK
protect flush_figures post-exec function from user error...
r5735 try:
return show(True)
except Exception as e:
# safely show traceback if in IPython, else raise
try:
MinRK
don't catch potential NameErrors in showtraceback()
r5736 get_ipython
MinRK
protect flush_figures post-exec function from user error...
r5735 except NameError:
raise e
MinRK
don't catch potential NameErrors in showtraceback()
r5736 else:
get_ipython().showtraceback()
return
MinRK
don't unregister interrupted post-exec functions...
r5346 try:
# exclude any figures that were closed:
active = set([fm.canvas.figure for fm in Gcf.get_all_fig_managers()])
for fig in [ fig for fig in show._to_draw if fig in active ]:
MinRK
protect flush_figures post-exec function from user error...
r5735 try:
MinRK
use display instead of send_figure in inline backend hooks...
r8157 display(fig)
MinRK
protect flush_figures post-exec function from user error...
r5735 except Exception as e:
# safely show traceback if in IPython, else raise
try:
MinRK
don't catch potential NameErrors in showtraceback()
r5736 get_ipython
MinRK
protect flush_figures post-exec function from user error...
r5735 except NameError:
raise e
MinRK
don't catch potential NameErrors in showtraceback()
r5736 else:
get_ipython().showtraceback()
break
MinRK
don't unregister interrupted post-exec functions...
r5346 finally:
# clear flags for next round
show._to_draw = []
show._draw_called = False
Brian Granger
Lots of work on the display system, focused on pylab stuff....
r3280
Jens H. Nielsen
Provide default figure canvas for inline backend needed due to matplotlib...
r8388
Jens H. Nielsen
Add a comment to document why the figurecanvas is needed...
r8389 # Changes to matplotlib in version 1.2 requires a mpl backend to supply a default
# figurecanvas. This is set here to a Agg canvas
# See https://github.com/matplotlib/matplotlib/pull/1125
Jens H. Nielsen
Provide default figure canvas for inline backend needed due to matplotlib...
r8388 FigureCanvas = FigureCanvasAgg