Newbie to sunburst charts here. I am charting a list of labels and their parents, in accordance with the directions for go.Sunburst here [see example with Eve.]
For some reason, there is just a blank screen when I plug my trace into my go.Figure(). Here is the trace of the example:
Sunburst({
'branchvalues': 'total',
'labels': [Eve, Cain, Seth, Enos, Noam, Abel, Awan, Enoch, Azura],
'parents': [, Eve, Eve, Seth, Seth, Eve, Eve, Awan, Eve],
'values': [65, 14, 12, 10, 2, 6, 6, 4, 4]
})
And the trace I am working with:
Sunburst({
'branchvalues': 'total',
'labels': [All, Germany, Spain, France, G_Not_0_balance, S_0_balance,
S_Not_0_balance, F_0_balance, F_Not_0_balance, Exited],
'parents': [, All, All, All, Germany, Spain, Spain, France, France,
G_0_balance],
'values': [10000, 2509, 2477, 5014, 2509, 1199, 1278, 2418, 2596, 814]
})
The length of all lists is the same, and all values are non-zero. Does anyone have any hints as to what I am doing wrong?