I need to query a Pandas DataFrame
with a multiselection-like widget. It's pretty easy to do that with Streamlit (streamlit multiselect example) but I wish to obtain the same through Ipython widgets.
Another point is that I have to deal with 184 possible selections.
Asked
Active
Viewed 642 times
0

Erdos
- 11
- 1
-
Have you tried the SelectMultiple widget? https://ipywidgets.readthedocs.io/en/latest/examples/Widget%20List.html#SelectMultiple – ac24 Dec 10 '20 at 12:17
-
@ac24 Yes but I'm looking for something easier than multi selection with `shift`+`command`/`ctrl` as in your link. – Erdos Dec 10 '20 at 15:01