admin 管理员组

文章数量: 887007

python的seaborn库怎样画饼图,写出代码

使用 Seaborn 库可以很容易的绘制饼图。以下是使用 Seaborn 库绘制饼图的代码示例:import seaborn as sns import matplotlib.pyplot as plt# 数据准备 labels = ['Apple','Banana','Orange','Grapes','Strawberry'] sizes = [15,30,45,10,10]# 绘图 plt.pie(sizes,labels=labels,autopct='%1.1f%%') plt.axis('equal') plt.show()

本文标签: python的seaborn库怎样画饼图,写出代码