Search Panes#
SearchPanes is an extension that lets you select rows based on unique values. In the example below we have activated the cascade filtering through the searchPanes.cascadePanes
argument.
Note that, in Jupyter, the searchPanes.layout
argument is required (otherwise the search panes are too wide).
import itables
itables.init_notebook_mode()
df = itables.sample_dfs.get_countries(html=False, climate_zone=True)
itables.show(
df.reset_index(),
layout={"top1": "searchPanes"},
searchPanes={"layout": "columns-3", "cascadePanes": True, "columns": [1, 6, 7]},
)
Warning
When searching, please keep in mind that ITables will downsample your table if it is larger than maxBytes
, so you might not see the full dataset - pay attention to the downsampling message at the bottom left of the table.