Hi Everyone,
I am trying to merge cells in the table I have attached. Ideally, I’d like to have the cells containing “V1” merged together as one. The same for “V2” and “V3”. Below is my code as well, any idea how to pull this off?
header=dict(values=[' ', 'V1', 'V1', 'V1', 'V2', 'V2', 'V2', 'V3', 'V3', 'V3']),
cells=dict(values=[[" ", "C1", "C2", "C3", "C4", "C5"],
['1', '$', '%', 'C', 1000, 1000],
['2', '$', '%', 'C', 1000, 1000],
['3.', '$', '%', 'C', 1000, 1000],
['1', '$', '%', 'C', 1000, 1000],
['2', '$', '%', 'C', 1000, 1000],
['3.', '$', '%', 'C', 1000, 1000],
['1', '$', '%', 'C', 1000, 1000],
['2', '$', '%', 'C', 1000, 1000],
['3.', '$', '%', 'C', 1000, 1000],
]))
data = [trace]
py.plot(data, filename='test.html', auto_open = True)```
