File:Children poverty rate in OECD.svg

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

Original file(SVG file, nominally 900 × 450 pixels, file size: 120 KB)

Captions

Captions

Children poverty rate in OECD

Summary[edit]

Description
English: Children poverty rate in OECD, 2020 or lastest
Date
Source Own work, Data from OECD Income Distribution Database
https://stats.oecd.org/Index.aspx?DataSetCode=IDD
Author Yuasan
Permission
(Reusing this file)
CC-0

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.

graph data[edit]

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=["2020"], ascending=True)

fig, ax = plt.subplots(figsize=(10, 5))
ax.bar(df.index, df["2020"] , color="#8ABCDA", width=0.6)
ax.set_axisbelow(True)
ax.margins(0.02)

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("Relative poverty rate, 0-17 age, 2020 or lastest\n(OECD Income Distribution Database)", fontsize=14)
plt.tick_params(labelsize=10, pad=4)
plt.xticks(rotation=56, fontsize=8)
plt.yticks(fontsize=9)
plt.ylabel("People ratio whose income falls \n below the poverty line", fontsize=10)

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

plt.savefig("image.svg")

File history

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

Date/TimeThumbnailDimensionsUserComment
current10:38, 8 November 2023Thumbnail for version as of 10:38, 8 November 2023900 × 450 (120 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