Technology Sharing

Draw a sunburst chart using Python

2024-07-12

한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina

Draw a sunburst chart using Python

  • Sunrise
  • Effect
  • Code

Sunrise

The sunburst chart is a hierarchical chart used to show the multi-level relationship of data. It is similar to a multi-layered doughnut chart.

Effect

[External link image transfer failed. The source site may have an anti-hotlink mechanism. It is recommended to save the image and upload it directly (img-W7pp1Pgn-1720511220218)(https://i-blog.csdnimg.cn/direct/9382052ea34d44079c104e67a5ee5722.png)]

Code

import matplotlib.pyplot as plt
from pylab import *
mpl.rcParams['font.sans-serif']=['SimHei']
# 示例数据
sizes = [15, 30, 45, 10]
labels = ['A', 'B', 'C', 'D']
sub_sizes = [7, 8, 15, 15, 20, 25, 5, 5]
sub_labels = ['A1', 'A2', 'B1', 'B2', 'C1', 'C2', 'D1', 'D2']

# 绘制旭日图
fig, ax = plt.subplots()
ax.pie(sizes, labels=labels, radius=1.3, wedgeprops=dict(width=0.3, edgecolor='w'))
ax.pie(sub_sizes, labels=sub_labels, radius=1, wedgeprops=dict(width=0.3, edgecolor='w'))
ax.set(aspect="equal")
plt.title('旭日图')
plt.show()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17