pyqpanda.Visualization.utils 源代码

"""Common visualization utilities."""

MATPLOTLIB_INLINE_BACKENDS = {
    "module://ipykernel.pylab.backend_inline",
    "module://matplotlib_inline.backend_inline",
    "nbAgg",
}


[文档] def matplotlib_close_if_inline(figure): """Close the given matplotlib figure if the backend in use draws figures inline. If the backend does not draw figures inline, this does nothing. This function is to prevent duplicate images appearing; the inline backends will capture the figure in preparation and display it as well, whereas the drawers want to return the figure to be displayed.""" # This can only called if figure has already been created, so matplotlib must exist. import matplotlib.pyplot if matplotlib.get_backend() in MATPLOTLIB_INLINE_BACKENDS: matplotlib.pyplot.close(figure)