私はPythonで、この単純な機能を持っていると仮定:または['Mary', 'Sarah', 'Arwen']
(その他)(gender
がmale
場合)gender
がname
一方['male', 'female']
に属するIPythonウィジェットで別の引数に依存する引数を取る方法はありますか?
def f(gender, name):
if gender == 'male':
return ranking_male(name)
else:
return ranking_female(name)
は['Adam', 'John', 'Max', 'Frodo']
に属します。
interact
をipywidgets
からf
に適用したいと考えています。通常1は、問題がname
ための許容値は、今gender
のために選択した値に依存していることである
from ipywidgets import interact
interact(f, gender = ('male', 'female'), name = ('Adam', 'John', 'Max', 'Frodo'))
を行うだろう。
ドキュメントで見つけようとしましたが見つかりませんでした。私が重要と考える唯一のことは、 です。これは、特性変化の動的通知を設定するために使用されます。
Parameters
----------
handler : callable
A callable that is called when a trait changes. Its
signature should be ``handler(change)``, where ``change```is a
dictionary. The change dictionary at least holds a 'type' key.
* ``type``: the type of notification.
Other keys may be passed depending on the value of 'type'. In the
case where type is 'change', we also have the following keys:
* ``owner`` : the HasTraits instance
* ``old`` : the old value of the modified trait attribute
* ``new`` : the new value of the modified trait attribute
* ``name`` : the name of the modified trait attribute.
names : list, str, All
If names is All, the handler will apply to all traits. If a list
of str, handler will apply to all names in the list. If a
str, the handler will apply just to that name.
type : str, All (default: 'change')
The type of notification to filter by. If equal to All, then all
notifications are passed to the observe handler.
しかし、私はそれをどうやってやっているのか、また、ドキュメント文字列が何を話しているのかを理解することはできません。どんな助けでも大歓迎です!
非常に興味深い!ありがとう!この行が何をしているのか説明できますか? 'brand_widget.observe(on_update_brand_widget、 'value')' – gota
コールバック登録:http://ipywidgets.readthedocs.io/en/latest/examples/Widget%20Events.html#Traitlet-events – mrgloom