본문으로 이동

파일:Healthcare expenditures in Japan by Age.svg

문서 내용이 다른 언어로는 지원되지 않습니다.
위키백과, 우리 모두의 백과사전.

원본 파일(SVG 파일, 실제 크기 900 × 450 픽셀, 파일 크기: 129 KB)

이 파일은 최신 정보를 받아서 업데이트될 가능성이 있습니다.
새로운 업데이트가 반영되는 것 없이, 특정 판의 파일을 사용한 경우에는, 필요한 판을 다른 파일로서 업로드해주세요.

파일 설명

설명
English: Healthcare expenditures in Japan by Age (MHLW,2020)
날짜
출처 자작, Data from MHLW 保険局調査課,
医療保険に関する基礎資料 ~令和2年度の医療費等の状況~ , p52, 53
저자 Yuasan
저작권
(이 파일을 인용하기)
CC-0

라이선스

나는 아래 작품의 저작권자로서, 이 저작물을 다음과 같은 라이선스로 배포합니다:
Creative Commons CC-Zero 이 파일은 크리에이티브 커먼즈 CC0 1.0 보편적 퍼블릭 도메인 귀속에 따라 이용할 수 있습니다.
저작물에 본 권리증서를 첨부한 자는 법률에서 허용하는 범위 내에서 저작인접권 및 관련된 모든 권리들을 포함하여 저작권법에 따라 전 세계적으로 해당 저작물에 대해 자신이 갖는 일체의 권리를 포기함으로써 저작물을 퍼블릭 도메인으로 양도하였습니다. 저작권자의 허락을 구하지 않아도 이 저작물을 상업적인 목적을 포함하여 모든 목적으로 복제, 수정·변경, 배포, 공연·실연할 수 있습니다.

graph data

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

df1 = pd.read_csv("data.tsv", index_col=0 , sep = "\t").T.div(1000)
df2 = pd.read_csv("consult.tsv", index_col=0 , sep = "\t")
df2 = df2.reindex(columns=['Total'])

fig, ax = plt.subplots(figsize=(10, 5))
ax2 = ax.twinx()

ax.plot(df2, label="Doctor consult", color="#5E95CD")

for i in range( len(df1) ):
	ax2.bar(df1.columns, df1.iloc[i] ,  bottom=df1.iloc[:i].sum(), label=df1.index[i])

lines, labels = ax.get_legend_handles_labels()
lines2, labels2 = ax2.get_legend_handles_labels()
ax2.legend(lines + lines2, labels + labels2, facecolor="#eeeeee" ,ncol=2, fontsize=11,loc='upper left')

ax.set_ylim([0,20])
ax2.set_ylim([0,1600])
ax2.axvspan(14.5, 20.5, color="#dddddd",zorder=-1)		#BG paint

ax.patch.set_alpha(0)
ax.set_zorder(2)
ax2.set_zorder(1)

plt.rcParams['font.family'] = 'sans-serif'
plt.rcParams['font.sans-serif'] = ['Noto Sans Display']
plt.subplots_adjust(left=0.07, bottom=0.13, right=0.90, top=0.92)

plt.title("Healthcare expenditure of Japan by Age (MHLW,2020)", fontsize=16)
plt.tick_params(labelsize=10, pad=4)
ax.set_xlabel("Age", size=10)
ax.set_ylabel("Doctor consult per person (count)", size=10)
ax2.set_ylabel("Healthcare expenditure per person (1000 JPY)", size=10)

plt.setp(ax.get_xticklabels(), fontsize=8, rotation=45)
plt.setp(ax.get_yticklabels(), fontsize=9 )

ax2.minorticks_on()
ax.set_axisbelow(True)
ax2.set_axisbelow(True)
ax.grid(False, which='both', axis="both")
ax2.grid(True, which='major',color='#cccccc',linestyle='-', axis="y")
ax2.grid(True, which='minor',color='#eeeeee',linestyle='--', axis="y")

plt.savefig("image.svg")

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다

이 파일에 묘사된 항목

다음을 묘사함

파일 역사

날짜/시간 링크를 클릭하면 해당 시간의 파일을 볼 수 있습니다.

날짜/시간섬네일크기사용자설명
현재2023년 6월 26일 (월) 02:032023년 6월 26일 (월) 02:03 판의 섬네일900 × 450 (129 KB)Yuasanbg style
2023년 6월 26일 (월) 01:482023년 6월 26일 (월) 01:48 판의 섬네일900 × 450 (128 KB)Yuasan2020 data
2015년 5월 6일 (수) 20:062015년 5월 6일 (수) 20:06 판의 섬네일657 × 405 (87 KB)Yuasanfix
2015년 4월 27일 (월) 17:052015년 4월 27일 (월) 17:05 판의 섬네일688 × 498 (88 KB)YuasanUser created page with UploadWizard

다음 문서 1개가 이 파일을 사용하고 있습니다:

이 파일을 사용하고 있는 모든 위키의 문서 목록

다음 위키에서 이 파일을 사용하고 있습니다:

메타데이터