当前位置: 首页>>代码示例>>Python>>正文


Python matplotlib._pylab_helpers方法代码示例

本文整理汇总了Python中matplotlib._pylab_helpers方法的典型用法代码示例。如果您正苦于以下问题:Python matplotlib._pylab_helpers方法的具体用法?Python matplotlib._pylab_helpers怎么用?Python matplotlib._pylab_helpers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在matplotlib的用法示例。


在下文中一共展示了matplotlib._pylab_helpers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: getfigs

# 需要导入模块: import matplotlib [as 别名]
# 或者: from matplotlib import _pylab_helpers [as 别名]
def getfigs(*fig_nums):
    """Get a list of matplotlib figures by figure numbers.

    If no arguments are given, all available figures are returned.  If the
    argument list contains references to invalid figures, a warning is printed
    but the function continues pasting further figures.

    Parameters
    ----------
    figs : tuple
        A tuple of ints giving the figure numbers of the figures to return.
    """
    from matplotlib._pylab_helpers import Gcf
    if not fig_nums:
        fig_managers = Gcf.get_all_fig_managers()
        return [fm.canvas.figure for fm in fig_managers]
    else:
        figs = []
        for num in fig_nums:
            f = Gcf.figs.get(num)
            if f is None:
                print('Warning: figure %s not available.' % num)
            else:
                figs.append(f.canvas.figure)
        return figs 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:27,代码来源:pylabtools.py


注:本文中的matplotlib._pylab_helpers方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。