国立大学運営費交付金の推移

Rで描いた国立大学運営費交付金のPython版である。

import matplotlib.pyplot as plt

# 2004年〜2025年の運営費交付金
運営費交付金 = [12415, 12317, 12214, 12043, 11813, 11695, 11585,
                11528, 11366, 10792, 11123, 10945, 10945, 10971,
                10971, 10971, 10807, 10790, 10786, 10784, 10784,
                10784]
年 = list(range(2004, 2004+len(運営費交付金)))
plt.figure(figsize=(8, 4.8))
plt.bar(年, 運営費交付金, color="lightgray")
for year, value in zip(年, 運営費交付金):
    plt.text(year, value, value, ha="center", va="bottom", fontsize=5)
plt.text(2002.1, 12200, '億円', ha='right', va='bottom') # , fontsize=12) # , color='black')
# plt.savefig("univ_budget.svg", bbox_inches="tight")
国立大学運営費交付金の推移