通过bbox精细调整表格位置和大小


import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['SimHei']
plt.rcParams['axes.unicode_minus'] = False

#绘制饼图
kinds = [,‘全麦粉', ‘酵母',‘苹果酱', ‘鸡蛋', ‘黄油', ‘盐', ‘白糖']
weight = [250,150,4,250,50,30,4,20]
plt.pie(weight, autopct=‘%3.1f%%')

#添加图例(通过bbox_to_anchor精细调整图例位置)box_to_anchor
plt.legend(kinds, loc='upper right', bbox_to_anchor=[2.1,0.7],ncol=4)#用ncol使图例变为4列展示

#添加表格(通过bbox精细调整表格位置和大小)
plt.table(cellText=[weight], cellLoc='center', rowLabels=[‘重量(g)'], colLabels=kinds, loc='bottom', bbox=[1.18,0.3,0.9,0.2],rowColours = ['pink'], cellColours = cellColors, colColours = ['pink']*8)
#bbox=[1.18,0.3,0.9,0.2]表示将表格位置放在图形外面,设置表格的宽度为0.9,高度为0.2

plt.show()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值