作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个标题左对齐的饼图:
import matplotlib.pyplot as plt
# Pie chart, where the slices will be ordered and plotted counter-clockwise:
sizes = [15, 30, 45, 10]
fig1, ax1 = plt.subplots()
ax1.pie(sizes, autopct='%1.1f%%', startangle=90)
ax1.axis('equal')
ax1.set_title('Pie Title', loc='left')
plt.tight_layout()
plt.savefig(r'C:\images\pie.png', bbox_inches='tight')
此代码生成此图像:
但是饼图周围的空白太多。如何左对齐标题和饼图并裁剪不必要的空白?
最佳答案
您可以从一个正方形开始,例如figsize=(4,4)
。
然后,您可以添加一些空格以使标题对齐。
import matplotlib.pyplot as plt
sizes = [15, 30, 45, 10]
fig1, ax1 = plt.subplots(figsize=(4,4))
ax1.pie(sizes, autopct='%1.1f%%', startangle=90)
ax1.axis('equal')
ax1.set_title(' Pie Title', loc='left')
plt.tight_layout()
plt.savefig(__file__+"pie.png", bbox_inches='tight')
plt.show()
如果这还不够,您可以使用 subplots_adjust
,例如 plt.subplots_adjust(bottom=0, top=0.93, left=0.0, right=1)
.
关于python - 如何左对齐饼图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42347119/
有人可以帮我理解为什么我的饼图百分比计算不正确吗?看截图: 根据我的计算,如 RHS 上所示,支出百分比应为 24.73%。传递给 Highcharts 的值如下:- 花费:204827099.36-
我正在制作圆环饼图。 我设置数据的颜色并获取钻取(它是保存外部切片的数据和配置的对象)切片的颜色为同一组颜色。我想设置要在向下钻取对象中使用的不同颜色数组。请参阅附图(外层切片有两种颜色:橙色和透明)
我是一名优秀的程序员,十分优秀!