Bbox与bbox_to_anchor的练习

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

1、绘制饼图

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

2、添加图例(通过bbox to anchor精细调整图例位置)

plt.legend(kinds, loc='upper right', bbox_to_anchor=[2.2,0.8],ncol=4)
# bbox to anchor=[2.2, 08]表示在图形的外面去添加图例,ncol=4 表示将图例弄成4列
cellColors=[['yellow']*8] #将8个单元格的背景弄成黄色

3、添加表格(通过bbox精细调整表格位置和大小)

plt.table(cellText=[weight], cellLoc='center', rowLables =['重量(g)'],
colLabels=kinds,loc='bottom',bbox=[1.3,0.3,0.9,0.2],
rowColours = ['pink'],cellColours= cellCours = ['pink']*8)
#bbox=[1.3,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、付费专栏及课程。

余额充值