1

関数内で matplotlib SpanSelector を使用しようとしています。元の例 ( http://matplotlib.org/examples/widgets/span_selector.html ) を変更しましたが、機能しませんでした。コードは次のとおりです。

#!/usr/bin/env python
"""
The SpanSelector is a mouse widget to select a xmin/xmax range and plot the
detail view of the selected region in the lower axes
"""
import numpy as npy
from pylab import figure, show
from matplotlib.widgets import SpanSelector

fig = figure(figsize=(8,6))
ax = fig.add_subplot(211, axisbg='#FFFFCC')

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

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

ax2 = fig.add_subplot(212, axisbg='#FFFFCC')
line2, = ax2.plot(x, y, '-')


def onselect(xmin, xmax):
    indmin, indmax = npy.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()

## set useblit True on gtkagg for enhanced performance
# SpanSelector works this way
#span = SpanSelector(ax, onselect, 'horizontal', useblit=True,
#                    rectprops=dict(alpha=0.5, facecolor='red') )

def fun_with_spanselector_inside():
    # set useblit True on gtkagg for enhanced performance
    span = SpanSelector(ax, onselect, 'horizontal', useblit=True,
                        rectprops=dict(alpha=0.5, facecolor='red') )

# SpanSelector does not work this way
fun_with_spanselector_inside()

show()

Ubuntu 12.04でPython 2.7、matplotlib 1.1.1rcを使用しています。

なぜこれが機能しないのですか?

4

1 に答える 1

1

SpanSelectorインスタンスへの参照を保持する必要があるだけです。それ以外の場合は、ガベージ コレクションです。

基本的に、これを行う必要があります:

def fun_with_spanselector_inside():
    # set useblit True on gtkagg for enhanced performance
    span = SpanSelector(ax, onselect, 'horizontal', useblit=True,
                        rectprops=dict(alpha=0.5, facecolor='red') )
    return span

span = fun_with_spanselector_inside()

これは、関数内にあることとは関係がないことに注意してください。あなただけの場合:

SpanSelector(ax, onselect, 'horizontal', useblit=True,
             rectprops=dict(alpha=0.5, facecolor='red'))

それもうまくいきません。

ただし、これはドキュメントでより明確にする必要があります。これが設計によるものなのか偶然によるものなのかはわかりません。

于 2013-06-15T21:48:11.410 に答える