要使用Plotly的Pie类创建饼图,首先需要安装Plotly库。然后可以按照以下步骤创建饼图:
- 导入所需的库:
import plotly.graph_objects as go
- 创建饼图数据:
labels = ['A', 'B', 'C', 'D'] values = [30, 40, 20, 10]
- 使用Pie类创建饼图对象,并指定数据:
fig = go.Figure(data=https://www.yisu.com/ask/[go.Pie(labels=labels, values=values)])>
- 可以通过设置一些属性来自定义饼图,例如标题、颜色、起始角度等:
fig.update_layout(title_text='Pie Chart') fig.update_traces(marker=dict(colors=['red', 'blue', 'green', 'orange']), rotation=90)
- 最后显示饼图:
fig.show()这样就可以使用Plotly的Pie类创建并显示饼图了。可以根据需要调整数据和属性来自定义饼图的样式。