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


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


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

matplotlib.figure.Figure.init_layoutbox()方法

matplotlib库的init_layoutbox()方法图形模块用于初始化布局盒,以用于constrained_layout。

用法:init_layoutbox(self)


参数:此方法不接受任何参数。

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

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

范例1:

# Implementation of matplotlib function  
import matplotlib.pyplot as plt  
import numpy as np  
import matplotlib.gridspec as gridspec  
    
fig = plt.figure()  
gs = gridspec.GridSpec(2, 2)  
    
for i in range(2):  
    ax = fig.add_subplot(gs[1, i])  
    ax.set_ylabel('Y label')  
    ax.set_xlabel('X label')  
    if i == 0:  
        for tick in ax.get_xticklabels():  
            tick.set_rotation(45)  
    
fig.init_layoutbox()  
    
fig.suptitle("""matplotlib.figure.Figure.init_layoutbox() 
function Example\n\n""", fontweight ="bold")  
    
plt.show() 

输出:

范例2:

# Implementation of matplotlib function  
import numpy as np  
import matplotlib.pyplot as plt  
    
    
fig = plt.figure()  
fig.subplots_adjust(top = 0.8)  
ax1 = fig.add_subplot(211)  
    
t = np.arange(0.0, 1.0, 0.01)  
s = np.sin(2 * np.pi * t)  
line, = ax1.plot(t, s, color ='green', lw = 2)  
    
np.random.seed(19680801)  
    
ax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3])  
n, bins, patches = ax2.hist(np.random.randn(1000), 50,  
                            facecolor ='yellow',  
                            edgecolor ='yellow')  
    
fig.init_layoutbox()  
    
fig.suptitle("""matplotlib.figure.Figure.init_layoutbox() 
function Example\n\n""", fontweight ="bold")  
    
plt.show() 

输出:




相关用法


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