ipywidgets is a set of widgets produced as part of the Jupyter project. As such, I would expect their use and number to increase with the project's popularity.
Using ipywidgets
Getting ready
ipywidgets can also be installed with conda using:
conda install -c conda-forge ipywidgets
There are pip install commands available as well.
-
Using an ipywidget
I picked the radio button widget as an example.
How to do it...
We can use this code:
import ipywidgets as widgets
widgets.RadioButtons(
options=['red', 'green', 'blue'],
description=&apos...