当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.figure.Figure.set_canvas()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。

matplotlib.figure.Figure.set_canvas()方法

matplotlib库的set_canvas()方法图形模块用于设置包含图形的画布。

用法:set_canvas(self, canvas)


参数:此方法接受下面讨论的以下参数:

  • canvas:此参数是FigureCanvas。

返回值:此方法返回轴。

以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.set_canvas()函数:

范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
  
  
def new_figure():  
  
    fig = plt.figure() 
    plt.plot([0, 1], [2, 3]) 
    plt.close(fig) 
    return fig 
  
def show_figure(fig):
  
    dummy = plt.figure() 
    new_manager = dummy.canvas.manager 
    new_manager.canvas.figure = fig 
    fig.set_canvas(new_manager.canvas) 
  
fig = new_figure() 
show_figure(fig) 
  
fig.suptitle("""matplotlib.figure.Figure.set_canvas() 
function Example\n\n""", fontweight ="bold")     
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
  
   
x = np.arange(16) 
y = np.sin(x / 3) 
   
fig, ax = plt.subplots() 
   
ax.step(x, y + 2, color ='green') 
ax.plot(x, y + 2, 'o--', color ='black', alpha = 0.3) 
  
def show_figure(fig):
  
    dummy = plt.figure() 
    new_manager = dummy.canvas.manager 
    new_manager.canvas.figure = fig 
    fig.set_canvas(new_manager.canvas) 
  
show_figure(fig) 
  
fig.suptitle("""matplotlib.figure.Figure.set_canvas() 
function Example\n\n""", fontweight ="bold")     
  
plt.show()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.figure.Figure.set_canvas() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。