File:WPVG Newsletter 202501 Feature Graph 3 (zh-cn).png

原始文件 (1,804 × 1,215像素,文件大小:181 KB,MIME类型:image/png

摘要

描述

電子遊戲專題簡訊2025年1月刊專題報導插圖——2024年年終條目品質概況

來源

原始碼:

import matplotlib as mpl
import matplotlib.pyplot as plt
from matplotlib.lines import Line2D
fig, ax = plt.subplots(figsize=(10, 5))

data = [
    ['典範級', '典范级', 21, '#9CBDFF'],
    ['特色列表級', '特色列表级', 11, '#9CBDFF'],
    ['優良級', '优良级', 177, '#66FF66'],
    ['乙級', '乙级', 181, '#B2FF66'],
    ['乙級列表級', '乙级列表级', 5, '#B2FF66'],
    ['丙級', '丙级', 1204, '#FFFF66'],
    ['丙級列表級', '丙级列表级', 33, '#FFFF66'],
    ['初級', '初级', 4289, '#FFAA66'],
    ['列表級', '列表级', 338, '#C7B1FF'],
    ['小作品級', '小作品级', 5650, '#FFA4A4'],
    ['小列表級', '小列表级', 18, '#FFA4A4'],
    ['未評級', '未评级', 25, '#EEEEEE']
]
total = sum([d[2] for d in data])
labels = [f'{d[2] / total * 100:.1f}%' if d[2] / total > 0.05 else '' for d in data]
explodes = [0.05 if d[2] / total > 0.05 else 0 for d in data]

ax.pie([d[2] for d in data], colors=[d[3] for d in data], explode=explodes, labels=labels, labeldistance=0.5, startangle=90, textprops=dict(rotation_mode='anchor', ha='center', va='center'))

# 繁中版
mpl.rcParams['font.family'] = ['DejaVu Sans', 'Source Han Sans TC']
legend_handles = [Line2D([0], [0], marker='o', color='w', label=f'{d[0]}{d[2]}', markersize=10, markerfacecolor=d[3]) for d in data]
ax.legend(handles=legend_handles, loc='upper left', bbox_to_anchor=(.95, 0.8), frameon=False)
plt.figtext(x=0.705, y=0.76, s='2024年年終條目品質概況', fontsize=12, verticalalignment='top', fontweight='bold', backgroundcolor='white')
plt.savefig('WPVG Newsletter 202501 Feature Graph 3 (zh-tw).png', dpi=300, bbox_inches='tight')

# 简中版
mpl.rcParams['font.family'] = ['DejaVu Sans', 'Source Han Sans SC']
legend_handles = [Line2D([0], [0], marker='o', color='w', label=f'{d[1]}{d[2]}', markersize=10, markerfacecolor=d[3]) for d in data]
ax.legend(handles=legend_handles, loc='upper left', bbox_to_anchor=(.95, 0.8), frameon=False)
plt.figtext(x=0.705, y=0.76, s='2024年年终条目品质概况', fontsize=12, verticalalignment='top', fontweight='bold', backgroundcolor='white')
plt.savefig('WPVG Newsletter 202501 Feature Graph 3 (zh-cn).png', dpi=300, bbox_inches='tight')
日期

2025-01-01

作者

SuperGrey

授權許可
(重用此档案)
參見下方。
其他版本

授權協議

我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
您可以選擇您想要的授權條款。

文件历史

点击某个日期/时间查看对应时刻的文件。

日期/时间缩⁠略⁠图大小用户备注
当前2025年1月2日 (四) 08:242025年1月2日 (四) 08:24版本的缩略图1,804 × 1,215(181 KB)SuperGrey留言 | 贡献
2025年1月1日 (三) 12:012025年1月1日 (三) 12:01版本的缩略图1,804 × 1,215(181 KB)SuperGrey留言 | 贡献== 摘要 == {{Esoteric file}} ==摘要== {{Information |Description = 電子遊戲專題簡訊2025年1月刊專題報導插圖——2024年年終條目品質概況 |Source = 原始碼: <pre> import matplotlib as mpl import matplotlib.pyplot as plt from matplotlib.lines import Line2D fig, ax = plt.subplots(figsize=(10, 5)) data = [ ['典範級', '典范级', 21, '#9CBDFF'], ['特色列表級', '特色列表级', 11, '#9CBDFF'], ['優良級', '优良级', 177, '#66FF66'], ['乙級', '乙级', 181, '#B2FF66'], ['乙級列表級', '乙级列表级', 5, '#B2FF66'], ['丙級', '丙级', 1204, '#FFFF66'], ['丙級列表級', '…

元数据