Display index in plotly table dash

I’d like to show the index of a dataframe in the plotly table. The index uses one label for each group rather than repeating for each row, which is desirable for the dash app i’m building. Does anyone know how to resolve this?

1 Like

Probably a little late, but you could solve it at the Pandas level with .reset_index().

2 Likes

This is a great solution and it works. However, is there still no way to create a plotly table that includes an index?