好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)

matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)

熱門標簽:阿里電話機器人對話 正安縣地圖標注app 舉辦過冬奧會的城市地圖標注 qt百度地圖標注 電銷機器人系統廠家鄭州 地圖地圖標注有嘆號 400電話申請資格 遼寧智能外呼系統需要多少錢 螳螂科技外呼系統怎么用

matplotlib中常用的標題主要三種:窗口標題、圖像標題和子圖標題。
先通過三個案例簡要說明這三類標題的實現。

窗口標題、圖像標題,子圖標題(僅1個子圖)

import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif'] = 'SimHei'

fig = plt.figure()
plt.plot([1, 2])
# 設置圖像標題
plt.suptitle("這是圖像標題")
# 設置子圖標題
plt.title("這是子圖標題")
# 獲取默認窗口標題
current_title = fig.canvas.manager.window.windowTitle()
print("默認窗口:",current_title)
# 設置窗口標題方式一
fig.canvas.set_window_title("這是窗口標題")
# 設置窗口標題方式二
fig.canvas.manager.window.setWindowTitle("這是窗口標題")

plt.show()

窗口標題、圖像標題、子圖標題(多子圖)

使用subplot函數實現子圖

import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif'] = 'SimHei'

fig = plt.figure()
plt.subplot(1, 2, 1)
plt.plot([1,2,3,4], [1,4,9,16], "go") 
# 設置子圖1標題
plt.title("子圖1標題")

plt.subplot(122)
plt.plot([1,2,3,4], [1,4,9,16], "r^") # r^ 表示 紅色(red)三角
# 設置子圖2標題
plt.title("子圖2標題")
# 設置圖像標題
plt.suptitle("圖像標題")
# 設置窗口標題
#fig.canvas.set_window_title("這是窗口標題")
fig.canvas.manager.window.setWindowTitle("這是窗口標題")

plt.show()

使用subplots函數subplots實現子圖

import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif'] = 'SimHei'

fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(6,6))
ax[0].plot([1,2,3,4], [1,4,9,16], "go") 
# 設置子圖1標題
ax[0].set_title("子圖1標題") 
ax[1].plot([1,2,3,4], [1,4,9,16], "r^") 
# 設置子圖2標題
ax[1].set_title("子圖2標題") 
# 設置圖像標題
plt.suptitle("圖像標題")
# 設置窗口標題
fig.canvas.manager.window.setWindowTitle("這是窗口標題")

plt.show()

原理分析

通過前面三個案例可知:

窗口標題

設置窗口標題可以用兩種方法:
一種是調用figure.canvas對象的set_window_title方法,一種是figure.canvas.manager.window對象的setWindowTitle方法。通過下面源碼可知,這兩種方法其實是等價的。
因此在日常實現過程中,關鍵是獲取當前圖像對象(figure),即案例中的fig。該方法只有一個參數,類型為字符串。
可以通過

通過figure.canvas.manager.window對象的windowTitle方法可以獲取窗口標題。

class FigureManagerQT(FigureManagerBase):
  def set_window_title(self, title):
    self.window.setWindowTitle(title)

圖像標題

調用plt.suptitle函數即可。根據源碼可知,plt.suptitle函數其實是調用了當前figure對象的suptitle方法。

suptitle函數參數

  def suptitle(self, t, **kwargs):
    """
    Add a centered title to the figure.

    Parameters
    ----------
    t : str
      The title text.

    x : float, default 0.5
      The x location of the text in figure coordinates.

    y : float, default 0.98
      The y location of the text in figure coordinates.

    horizontalalignment, ha : {'center', 'left', right'}, default: 'center'
      The horizontal alignment of the text relative to (*x*, *y*).

    verticalalignment, va : {'top', 'center', 'bottom', 'baseline'}, \

default: 'top'
      The vertical alignment of the text relative to (*x*, *y*).

    fontsize, size : default: :rc:`figure.titlesize`
      The font size of the text. See `.Text.set_size` for possible
      values.

    fontweight, weight : default: :rc:`figure.titleweight`
      The font weight of the text. See `.Text.set_weight` for possible
      values.

    Returns
    -------
    text
      The `.Text` instance of the title.

    Other Parameters
    ----------------
    fontproperties : None or dict, optional
      A dict of font properties. If *fontproperties* is given the
      default values for font size and weight are taken from the
      `.FontProperties` defaults. :rc:`figure.titlesize` and
      :rc:`figure.titleweight` are ignored in this case.

    **kwargs
      Additional kwargs are `matplotlib.text.Text` properties.

    Examples
    --------
    >>> fig.suptitle('This is the figure title', fontsize=12)
    """

子圖標題

  • 使用subplot函數:在所在子圖中,使用plt.title函數。
  • 使用subplots函數:使用子圖對象調用set_title方法。
  • plt.title函數和axes.set_title方法的參數相同。

注意,在使用subplots函數創建子圖時,為什么不能使用plt.title函數設置子圖標題呢?
根據title函數的源碼可知,title函數其實是通過gca()函數獲取子圖,然后再調用set_title方法設置標題的。根據實驗,在使用subplots函數函數創建多個子圖時,plt.gca()只能得到最后一個子圖的標題,因此,在某些情況下使用plt.title函數可設置最后一個子圖的標題。

plt.title函數和axes.set_title方法源碼

def title(label, fontdict=None, loc=None, pad=None, *, y=None, **kwargs):
  return gca().set_title(
    label, fontdict=fontdict, loc=loc, pad=pad, y=y, **kwargs)
Axes.set_title(self, label, fontdict=None, loc=None, pad=None, *, y=None, **kwargs):
  """
  Set a title for the axes.

  Set one of the three available axes titles. The available titles
  are positioned above the axes in the center, flush with the left
  edge, and flush with the right edge.

  Parameters
  ----------
  label : str
    Text to use for the title

  fontdict : dict
    A dictionary controlling the appearance of the title text,
    the default *fontdict* is::

      {'fontsize': rcParams['axes.titlesize'],
      'fontweight': rcParams['axes.titleweight'],
      'color': rcParams['axes.titlecolor'],
      'verticalalignment': 'baseline',
      'horizontalalignment': loc}

  loc : {'center', 'left', 'right'}, default: :rc:`axes.titlelocation`
    Which title to set.

  y : float, default: :rc:`axes.titley`
    Vertical axes loation for the title (1.0 is the top). If
    None (the default), y is determined automatically to avoid
    decorators on the axes.

  pad : float, default: :rc:`axes.titlepad`
    The offset of the title from the top of the axes, in points.

  Returns
  -------
  `.Text`
    The matplotlib text instance representing the title

  Other Parameters
  ----------------
  **kwargs : `.Text` properties
    Other keyword arguments are text properties, see `.Text` for a list
    of valid text properties.
  """

plt.gca()實驗

import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif'] = 'SimHei'

fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(6,6))
ax[0].plot([1,2,3,4], [1,4,9,16], "go") 
ax[1].plot([1,2,3,4], [1,4,9,16], "r^") 

print(plt.gca())
print(ax[0],ax[1])

結果為

AxesSubplot(0.547727,0.11;0.352273x0.77)
AxesSubplot(0.125,0.11;0.352273x0.77) AxesSubplot(0.547727,0.11;0.352273x0.77)

到此這篇關于matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)的文章就介紹到這了,更多相關matplotlib 標題內容請搜索腳本之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • matplotlib subplots 設置總圖的標題方法
  • Python使用matplotlib模塊繪制圖像并設置標題與坐標軸等信息示例
  • Python使用Matplotlib模塊時坐標軸標題中文及各種特殊符號顯示方法

標簽:濟源 信陽 阜新 隨州 淘寶好評回訪 昭通 合肥 興安盟

巨人網絡通訊聲明:本文標題《matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)》,本文關鍵詞  matplotlib,源碼,解析,標題,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)》相關的同類信息!
  • 本頁收集關于matplotlib源碼解析標題實現(窗口標題,標題,子圖標題不同之間的差異)的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 国产老熟女伦老熟妇A片小川桃果| 操的嗷嗷叫| 欧美成人禁片在线观看俄罗斯| 同?子同居的日子AV片| 日韩欧美一区二区三区不卡| 调教皇后羞辱H扒开双乳小说| 噜噜噜狠狠色综合久色| 国产精品模特hd在线| 97色噜噜刺激有声小说| 性生大片免费观看性试看| 久久精品美女影院久久久久久| 亚洲自偷自拍另类12P| 在线成人中文字幕| 女生喷液视频| 泰国小处妓女乱XXX| 12至15女人A片毛片视频| 性动漫有肉无遮挡在线观看| 色狠狠成人综合色| 韩国伦色情理电影在线播放| 国产精品天天看天天做夜夜爽| 狠狠干激情| 全世界都在等你心动gl| 麻麻给我产子小说| 久久久夜色精品亚洲AV软件| 巜趁夫不在给给公侵犯了一天小说| 日本插曲的痛的30分钟| 中文日产幕无线码一区2023| 女人奶水milk高清HDXSD| 鞠婧祎被c| 互换身体完整免费观看| 少妇婬荡呻吟揉捏丰满奶头| パイパン熟女に中出しPorn| 亚洲午夜精品一区二区三区四区| 泽村玲子番号| 97精品视频| chinese自拍国语videos| 国产老熟女导航| 亚洲 丝袜 另类 中文 成人| 欧美xxxxx九色视频免费观看| 玛纳斯县| 性人久久久久|