如何确定 matplotlib 正在使用哪个后端?

发布于 2024-09-16 04:30:21 字数 63 浏览 2 评论 0原文

无论是交互方式,例如从 Ipython 会话中,还是从脚本中,如何确定 matplotlib 正在使用哪个后端?

Either interactively, such as from within an Ipython session, or from within a script, how can you determine which backend is being used by matplotlib?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

似最初 2024-09-23 04:30:21

使用 get_backend() 函数获取表示正在使用哪个后端的字符串:

>>> import matplotlib
>>> matplotlib.get_backend()
'TkAgg'

Use the get_backend() function to obtain a string denoting which backend is in use:

>>> import matplotlib
>>> matplotlib.get_backend()
'TkAgg'
黒涩兲箜 2024-09-23 04:30:21

确定当前后端的另一种方法是读取 rcParams 字典:

>>> import matplotlib
>>> print (matplotlib.rcParams['backend']) 
MacOSX
>>> matplotlib.use('agg')
>>> print (matplotlib.rcParams['backend']) 
agg

Another way to determine the current backend is to read rcParams dictionary:

>>> import matplotlib
>>> print (matplotlib.rcParams['backend']) 
MacOSX
>>> matplotlib.use('agg')
>>> print (matplotlib.rcParams['backend']) 
agg
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文