跨度選取器#

SpanSelector 是一個滑鼠小工具,可在軸上選取範圍。

在此範例中,可以在上軸上選取 x 範圍;然後將選取範圍的詳細檢視繪製在下軸上。

注意

如果 SpanSelector 物件被垃圾回收,您將失去互動性。您必須保持對它的硬引用以防止這種情況發生。

import matplotlib.pyplot as plt
import numpy as np

from matplotlib.widgets import SpanSelector

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

fig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6))

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 select a region in the top graph')

line2, = ax2.plot([], [])


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

    region_x = x[indmin:indmax]
    region_y = y[indmin:indmax]

    if len(region_x) >= 2:
        line2.set_data(region_x, region_y)
        ax2.set_xlim(region_x[0], region_x[-1])
        ax2.set_ylim(region_y.min(), region_y.max())
        fig.canvas.draw_idle()


span = SpanSelector(
    ax1,
    onselect,
    "horizontal",
    useblit=True,
    props=dict(alpha=0.5, facecolor="tab:blue"),
    interactive=True,
    drag_from_anywhere=True
)
# Set useblit=True on most backends for enhanced performance.


plt.show()
Press left mouse button and drag to select a region in the top graph

參考文獻

此範例中顯示了以下函式、方法、類別和模組的使用方式

腳本的總執行時間: (0 分鐘 1.164 秒)

由 Sphinx-Gallery 產生的範例庫