I have one dateframe:
idx_value val1 val2
idx 1 5
idx 2 6
idx 3 7
idx 4 8
I wonder if it is possible to convert table in html as following:
val1 val2
1 5
idx 2 6
3 7
4 8
I only want to show idx once. Thank you