I’m new to streamlit and still navigating the docs and search etc.
So far certain things seem easy but this one seems hard and I want to make sure I’m not simply missing some docs.
A very typical use case is to do something like df.groupby(‘possibly_high_arity_categorical’).size() and then use the top 50 entries as a table with group value that are clickable to filter other things.
I am struggling to find a good way to do clickable tables or charts (for selecting a categorical).
There are selects that work well, but would be nice to have things enriched. For example you might have hierarchies and do df.groupby([‘parent’, ‘child’]).size() and use that to drill in to views.
I have found you can use markdown lists and print the entire table as markdown but that is not great as you then have a static markdown table with no scrolling etc.
Feels like I’m missing a doc section or something as this is like the first thing one typically implements in these kind of frameworks.