从数据帧在Python中创建饼图

发布于 2025-01-13 03:20:03 字数 721 浏览 0 评论 0原文

我只是想创建 2 个饼图,一个基于 SalesQuantity,一个基于 ProfitPerBottle。我的代码和表格如下所示

HenSalePur["ProfitPerBottle"] = HenSalePur['SalesPrice'] - HenSalePur['PurchasePrice']
DonJSalePur["ProfitPerBottle"] = DonJSalePur['SalesPrice'] - DonJSalePur['PurchasePrice']
HenSalePur["TotalProfit"] = HenSalePur['ProfitPerBottle'] * HenSalePur['SalesQuantity']
DonJSalePur["TotalProfit"] = DonJSalePur['ProfitPerBottle'] * DonJSalePur['SalesQuantity']

DonJVolumeGrouped = DonJSalePur.groupby('Size').agg('sum')
print(DonJVolumeGrouped)  

不同瓶子的图表

用于饼图的按数量排序的图表

I am just trying to create 2 pie charts, one based on SalesQuantity and one based on ProfitPerBottle. My code and tables are shown below

HenSalePur["ProfitPerBottle"] = HenSalePur['SalesPrice'] - HenSalePur['PurchasePrice']
DonJSalePur["ProfitPerBottle"] = DonJSalePur['SalesPrice'] - DonJSalePur['PurchasePrice']
HenSalePur["TotalProfit"] = HenSalePur['ProfitPerBottle'] * HenSalePur['SalesQuantity']
DonJSalePur["TotalProfit"] = DonJSalePur['ProfitPerBottle'] * DonJSalePur['SalesQuantity']

DonJVolumeGrouped = DonJSalePur.groupby('Size').agg('sum')
print(DonJVolumeGrouped)  

Graph for different bottles

Graph sorted by volume used for pie chart

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉酒的小男人 2025-01-20 03:20:03

假设您已将表格数据加载到 pandas DataFrame 中,您可以使用下面的代码来检索所需的绘图:

plot_salesquantity = DonJVolumeGrouped.plot.pie(y='SalesQuantity')
plot_profitperbottle = DonJVolumeGrouped.plot.pie(y='ProfitPerBottle')

Assuming you have your tabular data loaded into a pandas DataFrame, you can use the code below to retrieve the required plots:

plot_salesquantity = DonJVolumeGrouped.plot.pie(y='SalesQuantity')
plot_profitperbottle = DonJVolumeGrouped.plot.pie(y='ProfitPerBottle')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文