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


Python Matplotlib.axes.Axes.set_figure()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。

matplotlib.axes.Axes.set_figure()函数

matplotlib库的axiss模块中的Axes.set_figure()函数用于为此轴设置图形。

用法: Axes.set_figure(self, fig)


参数:此方法仅接受一个参数。

  • fig:此参数是Figure实例。

返回值:此方法不返回任何值。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.set_figure()函数:

范例1:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
import matplotlib.lines as lines 
import matplotlib.transforms as mtransforms 
import matplotlib.text as mtext 
   
   
class GFGfun(lines.Line2D):
    def __init__(self, *args, **kwargs):
        self.text = mtext.Text(0, 0, '') 
        lines.Line2D.__init__(self, *args, **kwargs) 
        self.text.set_text(self.get_label()) 
   
    def set_figure(self, figure):
        self.text.set_figure(figure) 
        lines.Line2D.set_figure(self, figure) 
   
    def set_axes(self, axes):
        self.text.set_axes(axes) 
        lines.Line2D.set_axes(self, axes) 
   
    def set_transform(self, transform):
        # 2 pixel offset 
        texttrans = transform + mtransforms.Affine2D().translate(2, 2) 
        self.text.set_transform(texttrans) 
        lines.Line2D.set_transform(self, transform) 
   
    def set_data(self, x, y):
        if len(x):
            self.text.set_position((x[-1], y[-1])) 
   
        lines.Line2D.set_data(self, x, y) 
   
    def draw(self, renderer):
        lines.Line2D.draw(self, renderer) 
        self.text.draw(renderer) 
   
   
np.random.seed(10**7) 
   
   
fig, ax = plt.subplots() 
x, y = np.random.rand(2, 20) 
line = GFGfun(x, y, mfc ='green', 
              ms = 12,  
              label ='Label') 
   
line.text.set_color('green') 
line.text.set_fontsize(16) 
   
ax.add_line(line) 
   
fig.suptitle('matplotlib.axes.Axes.set_figure() \ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
import matplotlib.lines as lines 
import matplotlib.transforms as mtransforms 
import matplotlib.text as mtext 
   
   
class GFGfun(lines.Line2D):
    def __init__(self, *args, **kwargs):
        self.text = mtext.Text(0, 0, '') 
        lines.Line2D.__init__(self, *args, **kwargs) 
        self.text.set_text(self.get_label()) 
   
    def set_figure(self, figure):
        self.text.set_figure(figure) 
        lines.Line2D.set_figure(self, figure) 
   
   
np.random.seed(10**7) 
   
   
fig, ax = plt.subplots() 
x, y = np.random.rand(2, 10) 
line = GFGfun(x, y, mfc ='green', 
              ms = 12, 
              label ='Label') 
   
line.text.set_color('green') 
line.text.set_fontsize(16) 
   
ax.add_line(line) 
   
fig.suptitle('matplotlib.axes.Axes.set_figure() \ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:




相关用法


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