當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。