RowGroup#
Use the RowGroup extension to group the data according to the content of one colum. Optionally, you can hide the content of that column to avoid duplicating the information.
import itables
itables.init_notebook_mode()
df = itables.sample_dfs.get_countries(html=False)
itables.show(
df.sort_values("region"),
rowGroup={"dataSrc": 1},
columnDefs=[{"targets": 1, "visible": False}],
)