说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)有以下样本数据,需要用 plotly 绘制旭日图。
# 样本数据
data = {'id': ["A", "B", "С", "D", "E", "F", "G"],
'parent': ["", "A", "A", "B", "B", "С", "D"],
'value': [10, 15, 7, 8, 12, 6, 5],
}
代码如下:
import plotly.express as px
# 样本数据
data = {'id': ["A", "B", "С", "D", "E", "F", "G"],
'parent': ["", "A", "A", "B", "B", "С", "D"],
'value': [10, 15, 7, 8, 12, 6, 5],
}
# 创建旭日图
fig = px.sunburst(data,
names='id',
parents='parent',
values='value')
# 设置图表标题
fig. update_layout(title_text="Sunburst Chart")
# 显示图表
fig. show()
输出效果如下:
查看相关链接中的知识。
(完)
更新时间:2024-09-29 20:53:02 标签:python 习题 可视化 旭日图