如何确定 matplotlib 正在使用哪个后端?
无论是交互方式,例如从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
get_backend()
函数获取表示正在使用哪个后端的字符串:Use the
get_backend()
function to obtain a string denoting which backend is in use:确定当前后端的另一种方法是读取 rcParams 字典:
Another way to determine the current backend is to read
rcParams
dictionary: