ファイル:Income redistribution in Japan by age.svg

ページのコンテンツが他言語でサポートされていません。

元のファイル(SVG ファイル、900 × 540 ピクセル、ファイルサイズ: 96キロバイト)

このファイルは、最新の情報を受けて更新される可能性があります。
新しい更新が反映されることなく、特定の版のファイルを使用したい場合は、必要な版を別のファイルとしてアップロードしてください。

概要

解説
English: Income redistribution in Japan by age
日付
原典 投稿者自身による著作物, Data from MHLW Income redistribution survey, 2023
https://www.e-stat.go.jp/stat-search/files?page=1&toukei=00450422&tstat=000001024668
作者 Yuasan
許可
(ファイルの再利用)
CC-0

ライセンス

この作品の著作権者である私は、この作品を以下のライセンスで提供します。
Creative Commons CC-Zero このファイルはクリエイティブ・コモンズ CC0 1.0 全世界 パブリック・ドメイン提供のもとで利用可能にされています。
ある作品に本コモンズ証を関連づけた者は、その作品について世界全地域において著作権法上認められる、その者が持つすべての権利(その作品に関する権利や隣接する権利を含む。)を、法令上認められる最大限の範囲で放棄して、パブリック・ドメインに提供しています。

この作品は、たとえ営利目的であっても、許可を得ずに複製、改変・翻案、配布、上演・演奏することが出来ます。

graph data

import matplotlib.pyplot as plt
from cycler import cycler
import pandas as pd
import matplotlib.ticker as ticker

df = pd.read_csv("data.tsv", index_col=0 , sep = "\t").T

fig, ax = plt.subplots(figsize=(10, 6))
ax2 = ax.twinx()
plt.rcParams['font.family'] = 'sans-serif'
plt.rcParams['font.sans-serif'] = ['Noto Sans']
plt.subplots_adjust(left=0.10, bottom=0.18, right=0.99, top=0.90)

ax.bar(df.index, df['Tax']* -1, color="#9467bd", label="Tax")
ax.bar(df.index, df['Social Insurance'] *-1 , color="#e377c2", bottom=df['Tax']*-1, label="Social Insurance")
ax.bar(df.index, df['Cash Benefits'], color="#2ca02c", label="Cash Benefits")
ax.bar(df.index, df['Service Benefits'], color="#98DF8A", label="Service Benefits", bottom=df['Cash Benefits'] ) 
ax.axhspan(-250,0, color="lightblue", alpha=0.4 , zorder=-10)	

ax.set_ylim([-250,800])
ax.set_axisbelow(True)
ax.set_xlabel("Householder Age", fontsize=12)
ax.set_ylabel("Income,Tax and Transfers (10,000 JPY)", fontsize=14)
ax.margins(0.05)

ax2.set_prop_cycle( plt.rcParams['axes.prop_cycle'] )
ax2.plot(df["Raw Income"], lw=3, label="Raw Income", ls="--")
ax2.plot(df["Redistributed Income"], lw=3, label="Redistributed Income")
ax2.set_ylim([-250,800])
ax2.set_yticklabels([])
ax2.set_yticks([])
ax2.margins(0.05)

lines, labels = ax.get_legend_handles_labels()
lines2, labels2 = ax2.get_legend_handles_labels()
fig.legend(lines + lines2, labels + labels2, facecolor="#eeeeee" ,
           ncol=6, fontsize=10,loc='lower center')

plt.title("Income redistribution in Japan by age \n(MHLW Income redistribution survey, 2023)", fontsize=15)
plt.tick_params(labelsize=9, pad=4)
plt.grid(which='major',color='#cccccc',linestyle='-', axis="y")
plt.setp(ax.get_xticklabels(), fontsize=11, rotation=30)
plt.setp(ax.get_yticklabels(), fontsize=10 )

ax.minorticks_on()
ax.yaxis.set_major_locator(ticker.MultipleLocator(100))
ax.grid(False, which='minor', axis="x")
ax.grid(True, which='major',color='#cccccc',linestyle='-', axis="y")
ax.grid(True, which='minor',color='#eeeeee',linestyle='--', axis="y")

plt.savefig("image.svg")

キャプション

このファイルの内容を1行で記述してください
Income redistribution in Japan by age

このファイルに描写されている項目

題材

9 8 2023

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2023年9月28日 (木) 13:552023年9月28日 (木) 13:55時点における版のサムネイル900 × 540 (96キロバイト)Yuasan2023 data
2023年8月10日 (木) 15:562023年8月10日 (木) 15:56時点における版のサムネイル900 × 540 (95キロバイト)Yuasanadd details
2023年8月10日 (木) 14:572023年8月10日 (木) 14:57時点における版のサムネイル900 × 540 (89キロバイト)YuasanUploaded own work with UploadWizard

以下の​ 6 ページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています:

メタデータ