檔案: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:54於 2025年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')…

詮釋資料