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

原始文件 (2,540 × 1,436像素,文件大小:90 KB,MIME类型:image/png

摘要

描述

電子遊戲專題簡訊2025年1月刊專題報導插圖——歷年專題新增優良條目數量概況

來源

原始碼:

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

X = [2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024]
Y = [2, 5, 0, 1, 6, 9, 2, 7, 3, 3, 11, 14, 36, 28, 31, 25, 12]
ax.bar(X, Y, color='#66ff66')
ax.set_xticks(X)
ax.bar_label(ax.containers[0], fmt='%d', label_type='edge')

# 繁中版
mpl.rcParams['font.family'] = ['DejaVu Sans', 'Source Han Sans TC']
ax.set_xlabel('年分', fontsize=14)
ax.set_ylabel('新增條目數量', fontsize=14)
ax.set_title('新增優良條目', fontsize=16, fontweight='bold')
plt.savefig('WPVG Newsletter 202501 Feature Graph 1 (zh-tw).png', dpi=300, bbox_inches='tight')

# 简中版
mpl.rcParams['font.family'] = ['DejaVu Sans', 'Source Han Sans SC']
ax.set_xlabel('年份', fontsize=14)
ax.set_ylabel('新增条目数量', fontsize=14)
ax.set_title('新增优良条目', fontsize=16, fontweight='bold')
plt.savefig('WPVG Newsletter 202501 Feature Graph 1 (zh-cn).png', dpi=300, bbox_inches='tight')
日期

2025-01-01

作者

SuperGrey

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

授權協議

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

文件历史

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

日期/时间缩⁠略⁠图大小用户备注
当前2025年1月1日 (三) 11:542025年1月1日 (三) 11:54版本的缩略图2,540 × 1,436(90 KB)SuperGrey留言 | 贡献== 摘要 == {{Esoteric file}} ==摘要== {{Information |Description = 電子遊戲專題簡訊2025年1月刊專題報導插圖——歷年專題新增優良條目數量概況 |Source = 原始碼: <pre> import matplotlib as mpl import matplotlib.pyplot as plt fig, ax = plt.subplots(figsize=(10, 5)) X = [2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024] Y = [2, 5, 0, 1, 6, 9, 2, 7, 3, 3, 11, 14, 36, 28, 31, 25, 12] ax.bar(X, Y, color='#66ff66') ax.set_xticks(X) ax.bar_label(ax.containers[0], fmt='%d', label_type='edge')…

元数据