所有可用的matplotlib后端列表


70

当前后端名称可通过以下方式访问

>>>导入matplotlib.pyplot作为plt
>>> plt.get_backend()
'GTKAgg'

有没有一种方法可以获取可在特定计算机上使用的所有后端的列表?

Answers:


59

您可以访问列表

matplotlib.rcsetup.interactive_bk
matplotlib.rcsetup.non_interactive_bk
matplotlib.rcsetup.all_backends

第三个是前两个的串联。如果我正确地阅读了源代码,那么这些列表将被硬编码,并且不会告诉您哪些后端实际可用。也有

matplotlib.rcsetup.validate_backend(name)

但这也只会对照硬编码列表进行检查。


47

这是对先前发布的脚本的修改。它找到所有受支持的后端,对其进行验证并测量其fps。在OSX上,当涉及到tkAgg时,它会使python崩溃,因此使用后果自负;)

from __future__ import print_function, division, absolute_import
from pylab import *
import time

import matplotlib.backends
import matplotlib.pyplot as p
import os.path


def is_backend_module(fname):
    """Identifies if a filename is a matplotlib backend module"""
    return fname.startswith('backend_') and fname.endswith('.py')

def backend_fname_formatter(fname): 
    """Removes the extension of the given filename, then takes away the leading 'backend_'."""
    return os.path.splitext(fname)[0][8:]

# get the directory where the backends live
backends_dir = os.path.dirname(matplotlib.backends.__file__)

# filter all files in that directory to identify all files which provide a backend
backend_fnames = filter(is_backend_module, os.listdir(backends_dir))

backends = [backend_fname_formatter(fname) for fname in backend_fnames]

print("supported backends: \t" + str(backends))

# validate backends
backends_valid = []
for b in backends:
    try:
        p.switch_backend(b)
        backends_valid += [b]
    except:
        continue

print("valid backends: \t" + str(backends_valid))


# try backends performance
for b in backends_valid:

    ion()
    try:
        p.switch_backend(b)


        clf()
        tstart = time.time()               # for profiling
        x = arange(0,2*pi,0.01)            # x-array
        line, = plot(x,sin(x))
        for i in arange(1,200):
            line.set_ydata(sin(x+i/10.0))  # update the data
            draw()                         # redraw the canvas

        print(b + ' FPS: \t' , 200/(time.time()-tstart))
        ioff()

    except:
        print(b + " error :(")

这些脚本对我来说崩溃了(gist.github.com/palmstrom/6039823),但是在Spyder IDE下运行时效果很好。
马捷SMID

该基准测试的典型结果是什么?FPS有人吗?
rc0r

2
好棒!现场绘画!计算帧率并打印!确定哪个后端在您的计算机上最快是非常有用的。
特雷弗·博伊德·史密斯

1
运行脚本python2,在敲打脚本之后进行第一行from __future__ import print_function, division, absolute_import。(我本来要编辑问题中的代码...但是python2现在太血腥了...我觉得添加这种粗俗的东西是不礼貌的...我觉得这只会鼓励不良行为。)
Trevor Boyd Smith,

6

有Sven提到的硬编码列表,但是要查找Matplotlib可以使用的每个后端(基于当前用于设置后端的实现),可以检查matplotlib / backends文件夹。

以下代码执行此操作:

import matplotlib.backends
import os.path

def is_backend_module(fname):
    """Identifies if a filename is a matplotlib backend module"""
    return fname.startswith('backend_') and fname.endswith('.py')

def backend_fname_formatter(fname): 
    """Removes the extension of the given filename, then takes away the leading 'backend_'."""
    return os.path.splitext(fname)[0][8:]

# get the directory where the backends live
backends_dir = os.path.dirname(matplotlib.backends.__file__)

# filter all files in that directory to identify all files which provide a backend
backend_fnames = filter(is_backend_module, os.listdir(backends_dir))

backends = [backend_fname_formatter(fname) for fname in backend_fnames]

print backends

5

您可以假装输入错误的后端参数,然后它将返回ValueError以及有效的matplotlib后端列表,如下所示:

输入:

import matplotlib
matplotlib.use('WRONG_ARG')

输出:

ValueError: Unrecognized backend string 'test': valid strings are ['GTK3Agg', 'GTK3Cairo', 'MacOSX', 'nbAgg', 'Qt4Agg', 'Qt4Cairo', 'Qt5Agg', 'Qt
5Cairo', 'TkAgg', 'TkCairo', 'WebAgg', 'WX', 'WXAgg', 'WXCairo', 'agg', 'cairo', 'pdf', 'pgf', 'ps', 'svg', 'template']

3

您还可以在此处查看一些后端的文档:

http://matplotlib.org/api/index_backend_api.html

这些页面仅列出了一些后端,其中一些没有适当的文档:

matplotlib.backend_bases
matplotlib.backends.backend_gtkagg
matplotlib.backends.backend_qt4agg
matplotlib.backends.backend_wxagg
matplotlib.backends.backend_pdf
matplotlib.dviread
matplotlib.type1font

抱歉,我认为以上答案涵盖了该主题,但是应该提供链接作为参考,这就是我发布的原因。我的意思是没有伤害,我是菜鸟。
Leandro 2013年

2

您可以在以下文件夹中查看可能的后端列表...

/Library/Python/2.6/site-packages/matplotlib/backends
/usr/lib64/Python2.6/site-packages/matplotlib/backends

1

那这个呢?

%matplotlib --list
Available matplotlib backends: ['tk', 'gtk', 'gtk3', 'wx', 'qt4', 'qt5', 'qt', 'osx', 'nbagg', 'notebook', 'agg', 'svg', 'pdf', 'ps', 'inline', 'ipympl', 'widget']
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.