python饼图百分比_如何避免饼图matplotlib中百分比为零的键

本文展示了如何使用Python的matplotlib库创建饼图,并解决百分比标签重叠的问题。通过调整文本位置和缩放比例,确保饼图上的百分比标签清晰可见。
摘要由CSDN通过智能技术生成

以下代码应按预期工作:from matplotlib import pyplot

from collections import Counter

import numpy as np

def fixOverLappingText(text):

# if undetected overlaps reduce sigFigures to 1

sigFigures = 2

positions = [(round(item.get_position()[1],sigFigures), item) for item in text]

overLapping = Counter((item[0] for item in positions))

overLapping = [key for key, value in overLapping.items() if value >= 2]

for key in overLapping:

textObjects = [text for position, text in positions if position == key]

if textObjects:

# If bigger font size scale will need increasing

scale = 0.05

spacings = np.linspace(0,scale*len(textObjects),len(textObjects))

for shift, textObject in zip(spacings,textObjects):

textObject.set_y(key + shift)

def show_pi_chart(plot_title,keys,values):</

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值