亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在matplotlib中使用SpanSelector方法

發布時間:2021-02-24 16:41:45 來源:億速云 閱讀:223 作者:Leah 欄目:開發技術

本篇文章為大家展示了如何在matplotlib中使用SpanSelector方法,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

范圍選區概述

范圍選區是一種常見的對象選擇方式,在一個子圖中,可以在某一個軸方向上用鼠標選擇起始范圍的數據,這個特性可用來實現數據縮放(datazoom)。在matplotlib中的范圍選區屬于部件(widgets),matplotlib中的部件都是中性(neutral )的,即與具體后端實現無關。

范圍選區具體實現定義為matplotlib.widgets.SpanSelector類,繼承關系為:Widget->AxesWidget->_SelectorWidget->SpanSelector

SpanSelector類的簽名為class matplotlib.widgets.SpanSelector(ax, onselect, direction, minspan=None, useblit=False, rectprops=None, onmove_callback=None, span_stays=False, button=None)

SpanSelector類構造函數的參數為:

  • ax:范圍選區生效的子圖,類型為matplotlib.axes.Axes的實例。

  • onselect:范圍選區完成后執行的回調函數,函數簽名為def func(min, max)minmax的數據類型均為浮點數,表示選區在某個坐標軸方向上的最小值和最大值。

  • direction:范圍選區的坐標軸方向,取值范圍為{"horizontal", "vertical"},類型為字符串。

  • minspan:選區的最小范圍,選區范圍小于minspan將不會觸發onselectrectprops:范圍選區的外觀的屬性,默認值為None

  • span_stays:布爾值,是否在鼠標釋放后仍然保留選區,默認值為False

  • onmove_callback:當選區確定后移動鼠標觸發的回調函數,函數簽名為def func(min, max)minmax的數據類型均為浮點數,默認值為None

SpanSelector類中的state_modifier_keys公有變量 state_modifier_keys定義了操作快捷鍵,類型為字典。

案例:范圍選取基本實現

官方案例一,范圍選區基本實現。

案例說明

如何在matplotlib中使用SpanSelector方法

單擊鼠標拖動到適當位置釋放鼠標形成范圍選區,選區為透明度0.5藍色,控制臺輸出選區在橫坐標軸上的最大、最小坐標。
控制臺輸出:

1.569758064516129 2.0044354838709677

案例代碼

import matplotlib.pyplot as plt
import matplotlib.widgets as mwidgets
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [10, 50, 100])
def onselect(vmin, vmax):
  print(vmin, vmax)
rectprops = dict(facecolor='blue', alpha=0.5)
span = mwidgets.SpanSelector(ax, onselect, 'horizontal',span_stays=True,
               rectprops=rectprops)
plt.show()

案例:數據縮放功能

官方案例,https://matplotlib.org/gallery/widgets/span_selector.html

案例說明

如何在matplotlib中使用SpanSelector方法

在上方子圖單擊鼠標拖動到適當位置釋放鼠標形成范圍選區,選區為紅色,下方子圖重繪為選定區域內數據系列,起到了數據放大的效果。

案例代碼

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.widgets import SpanSelector

# Fixing random state for reproducibility
np.random.seed(19680801)

fig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6))
ax1.set(facecolor='#FFFFCC')

x = np.arange(0.0, 5.0, 0.01)
y = np.sin(2*np.pi*x) + 0.5*np.random.randn(len(x))

ax1.plot(x, y, '-')
ax1.set_ylim(-2, 2)
ax1.set_title('Press left mouse button and drag to test')

ax2.set(facecolor='#FFFFCC')
line2, = ax2.plot(x, y, '-')


def onselect(xmin, xmax):
  indmin, indmax = np.searchsorted(x, (xmin, xmax))
  indmax = min(len(x) - 1, indmax)

  thisx = x[indmin:indmax]
  thisy = y[indmin:indmax]
  line2.set_data(thisx, thisy)
  ax2.set_xlim(thisx[0], thisx[-1])
  ax2.set_ylim(thisy.min(), thisy.max())
  fig.canvas.draw()
  
span = SpanSelector(ax1, onselect, 'horizontal', useblit=True, span_stays=True,
          rectprops=dict(alpha=0.5, facecolor='red'))
# Set useblit=True on most backends for enhanced performance.

plt.show()

上述內容就是如何在matplotlib中使用SpanSelector方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禄劝| 教育| 贵德县| 盘山县| 双桥区| 宿迁市| 靖西县| 河曲县| 浏阳市| 南京市| 荆门市| 汨罗市| 蕉岭县| 庆元县| 正镶白旗| 张北县| 宝鸡市| 资阳市| 雅江县| 南城县| 和龙市| 伊金霍洛旗| 砚山县| 桦川县| 墨竹工卡县| 南阳市| 都江堰市| 康保县| 西华县| 剑河县| 徐水县| 龙岩市| 昌吉市| 巴马| 阿城市| 靖宇县| 玉山县| 闽清县| 饶阳县| 股票| 司法|