當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Matplotlib.figure.Figure.subplots_adjust()用法及代碼示例


Matplotlib是Python中的一個庫,它是數字的-NumPy庫的數學擴展。 Figure模塊提供了頂層Artist,即Figure,其中包含所有繪圖元素。此模塊用於控製所有圖元的子圖和頂層容器的默認間距。

matplotlib.figure.Figure.subplots_adjust()方法

matplotlib庫的subplots_adjust()方法圖形模塊用於用kwarg更新SubplotParams。

用法:subplots_adjust(self, left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)


參數:此方法接受下麵討論的以下參數:

  • left:此參數是該圖子圖的左側。
  • right:此參數是該圖子圖的右側。
  • bottom:此參數是該圖子圖的底部。
  • top:此參數是該圖子圖的頂部。
  • wspace:此參數是為子圖之間的空間保留的寬度量,表示為平均軸寬度的一部分。
  • hspace:此參數是為子圖之間的空間保留的高度量,表示為平均軸高度的一部分。

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

以下示例說明了matplotlib.figure中的matplotlib.figure.Figure.subplots_adjust()函數:

範例1:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
   
  
x = [1, 2, 3, 4] 
y = [1, 4, 9, 16] 
   
fig = plt.figure() 
axs = fig.subplots() 
  
axs.plot(x, y) 
  
fig.subplots_adjust(bottom = 0.15) 
  
fig.suptitle("""matplotlib.figure.Figure.subplots_adjust() 
function Example\n\n""", fontweight ="bold")  
  
fig.show() 

輸出:

範例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
from matplotlib.widgets import TextBox 
  
  
fig, ax = plt.subplots() 
fig.subplots_adjust(bottom = 0.2) 
  
t = np.arange(-2.0, 2.0, 0.001) 
s = np.sin(t)+np.cos(2 * t) 
  
initial_text = "sin(t) + cos(2t)"
l, = ax.plot(t, s, lw = 2) 
   
   
def submit(text):
    ydata = eval(text) 
    l.set_ydata(ydata) 
    ax.set_ylim(np.min(ydata), np.max(ydata)) 
    plt.draw() 
   
axbox = plt.axes([0.4, 0.05, 0.3, 0.075]) 
  
text_box = TextBox(axbox, 'Formula Used:', 
                   initial = initial_text) 
text_box.on_submit(submit) 
  
fig.suptitle("""matplotlib.figure.Figure.subplots_adjust() 
function Example\n\n""", fontweight ="bold")  
  
fig.show() 

輸出:




相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 Matplotlib.figure.Figure.subplots_adjust() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。