File:Labour force of Japan by age.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 1,440 × 720 pixels, file size: 66 KB)

Captions

Captions

Labour force of Japan by age and sex

Summary[edit]

Description
English: Labour force of Japan by age and sex
Date
Source Own work, Data from OECD Labour force Statistics https://stats.oecd.org/Index.aspx?DataSetCode=LFS_D
Author Yuasan
Permission
(Reusing this file)
PD


This file may be updated to reflect new information.
If you wish to use a specific version of the file without new updates being mirrored, please upload the required version as a separate file.

Graph data[edit]

import matplotlib.pyplot as plt
import pandas as pd
import numpy as np

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

fig, ax = plt.subplots(figsize=(16, 8))
x = np.arange(df.index.size)
ax.bar(x-0.15, df["Population(Men)"] , color="#93CDDD", width=0.3, bottom=0)
ax.bar(x+0.15, df["Population(Women)"] , color="#FFBDE2", width=0.3, bottom=0)

ax.bar(x-0.15, df["Labour Force(Men)"] , color="#3b95d3", width=0.3, bottom=0)
ax.bar(x+0.15, df["Labour Force(Women)"] , color="#D676AB", width=0.3, bottom=0)

ax.legend( ("Population(Men)","Population(Women)","Labour Force(Men)","Labour Force(Women)"),
		 fontsize=20,  loc='upper left',)
ax.set_axisbelow(True)

plt.rcParams['font.family'] = 'sans-serif'
plt.rcParams['font.sans-serif'] = ['Noto Sans Display']
plt.subplots_adjust(left=0.05, bottom=0.1, right=0.96, top=0.9)

plt.title("Labour force of Japan, by sex and age (OECD,2020)", fontsize=28)
plt.tick_params(labelsize=10, pad=4)
plt.xticks(x, df.index, rotation=40, size=13)
plt.xlabel("age", size=15)

plt.ylabel("Thousands person", size=15)
plt.yticks(fontsize=11)
plt.grid(which='major',color='#cccccc',linestyle='-', axis="y")
plt.subplots_adjust(top =0.88)

plt.savefig("image.svg")

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current10:42, 23 February 2022Thumbnail for version as of 10:42, 23 February 20221,440 × 720 (66 KB)Yuasan (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata