要使用Plotly的Pie类创建饼图,首先需要安装Plotly库。然后可以按照以下步骤创建饼图:
import plotly.graph_objects as go
labels = ['A', 'B', 'C', 'D']
values = [30, 40, 20, 10]
fig = go.Figure(data=[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类创建并显示饼图了。可以根据需要调整数据和属性来自定义饼图的样式。