OECD_Labour_force_participation_rate.svg


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.

Summary

Description
English: Labour force participation rate, 2021
Date
Source Own work , Data from OECD LFS
https://stats.oecd.org/Index.aspx?DataSetCode=LFS_D#
Author Yuasan
Permission
( Reusing this file )
CC-0

Licensing

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.

Graph data

import matplotlib.pyplot as plt
import pandas as pd

df=pd.read_csv("data.tsv", index_col=0 , sep = "\t")
df = df.sort_values(by=["Val"], ascending=True)

fig, ax = plt.subplots(figsize=(12, 5))
ax.bar(df.index, df["Val"] , color="#8ABCDA", width=0.6)
ax.set_axisbelow(True)
#ax.set_facecolor("#F1F7FB")

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

plt.title("Labour force participation rate, 2021 (OECD Labour Force Statistics)", fontsize=18)
plt.tick_params(labelsize=10, pad=4)
plt.xticks(rotation=55, fontsize=8)
plt.yticks(fontsize=13)
plt.ylabel("% of 15-64 age", fontsize=13)
plt.ylim([0,100])

plt.minorticks_on()
plt.grid(which='major',color='#cccccc',linestyle='-', axis="y")
plt.grid(which='minor',color='#dddddd',linestyle='-', axis="y")
plt.grid(which='minor', linestyle='None', axis="x")

plt.savefig("image.svg")

Captions

Labour force participation rate

Items portrayed in this file

depicts

17 June 2020