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)```