Path: blob/main/doc/how_to/interact/interact_abbreviations.md
2011 views
Use abbreviations to generate widgets
This guide addresses how to use abbreviations to create widgets with Panel interact
.
At the most basic level, interact
autogenerates UI controls for function arguments, and then calls the function with those arguments when you manipulate the controls interactively.
To use interact
, you need to define a function that you want to explore. Here is a function that return its argument.
When you pass this function to interact
along with x=10
, a slider is generated and bound to the function parameter, such that when you interact with the widget, the function is called.
When you pass an integer-valued keyword argument of 10
(x=10
) to interact
, it generates an integer-valued slider control with a range of [-10,+3*10]
. In this case, 10
is an abbreviation for an actual slider widget:
In fact, we can get the same result if we pass this IntSlider
as the keyword argument for x
:
This examples clarifies how interact
processes its keyword arguments:
If the keyword argument is a
Widget
instance with avalue
attribute, that widget is used. Any widget with avalue
attribute can be used, even custom ones.Otherwise, the value is treated as a widget abbreviation that is converted to a widget before it is used.
The following table gives an overview of different widget abbreviations:
Keyword argument | Widget |
True or False | Checkbox |
'Hi there' | Text |
value or (min,max,[step,[value]]) if integers are passed | IntSlider |
value or (min,max,[step,[value]]) if floats are passed | FloatSlider |
['orange','apple'] or {'one':1,'two':2} | Dropdown |
You have seen how the IntSlider widget works above. Here, more details about the different abbreviations for sliders and dropdowns are given.
If a 2-tuple of integers is passed (min,max)
, an integer-valued slider is produced with those minimum and maximum values (inclusively). In this case, the default step size of 1
is used.
If a 3-tuple of integers is passed (min,max,step)
, the step size can also be set.
A float-valued slider is produced if the elements of the tuples are floats. Here the minimum is 0.0
, the maximum is 10.0
and step size is 0.1
(the default).
The step size can be changed by passing a third element in the tuple.
For both integer and float-valued sliders, you can pick the initial value of the widget by supplying a default keyword argument when you define the underlying Python function. Here we set the initial value of a float slider to 5.5
.
You can also set the initial value by passing a fourth element in the tuple.
Use None
as the third element to just set min, max, and value.
Dropdown menus are constructed by passing a list of strings. In this case, the strings are both used as the names in the dropdown menu UI and passed to the underlying Python function.
When working with numeric data interact
will automatically add a discrete slider: