要使用Plotly創(chuàng)建樹(shù)形圖和旭日?qǐng)D,可以參考以下步驟:
import plotly.express as px
# 創(chuàng)建樹(shù)形圖數(shù)據(jù)
data = dict(
character=['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
parent=['', 'A', 'A', 'B', 'C', 'C', 'E', 'E'],
)
# 創(chuàng)建樹(shù)形圖
fig = px.treemap(data, names='character', parents='parent')
fig.show()
# 創(chuàng)建旭日?qǐng)D數(shù)據(jù)
data = dict(
character=['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
parent=['', 'A', 'A', 'B', 'B', 'C', 'C', 'D'],
value=[10, 20, 15, 5, 18, 8, 6, 12]
)
# 創(chuàng)建旭日?qǐng)D
fig = px.sunburst(data, names='character', parents='parent', values='value')
fig.show()
通過(guò)以上步驟,您可以使用Plotly創(chuàng)建樹(shù)形圖和旭日?qǐng)D,并將它們顯示出來(lái)。您也可以根據(jù)需要調(diào)整數(shù)據(jù)和圖表樣式,以滿足您的需求。