File:Iran unemployment 1384 1392 SH.svg

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

Original file(SVG file, nominally 720 × 540 pixels, file size: 52 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
فارسی: نمودار بالایی تغییرات جمعیت فعال (خط آبی)، غیرفعال (خط قرمز) و بیکار (نارنجی) در ایران و بر حسب میلیون نفر، و نمودار پایینی نرخ مشارکت اقتصادی بین سال‌های ۱۳۸۴ تا ۱۳۹۲ را برحسب درصد نمایش می‌دهد. منظور از جمعیت فعال جمعیتی است که در سن کار قرار دارند. طبق تعریف مرکز آمار ایران تمام افراد ۱۰ ساله و بیشتر که در هفته تقویمی قبل از آمارگیری طبق تعریف کار، در تولید کالا و خدمات مشارکت داشته (شاغل) و یا از قابلیت مشارکت برخوردار بوده‌اند (بیکار) جمعیت فعال اقتصادی محسوب می‌شوند. جمعیت غیرفعال بخشی از جمعیت است که نه شاغل و نه بیکار محسوب می‌شوند.
Date
Source Own work
Author دالبا

Raw data source: http://alef.ir/vdceen8wpjh8wvi.b9bj.html?225846

Source code:

#!/usr/bin/env python
import numpy as np
import matplotlib.pyplot as plt
import re
from pprint import pprint as pp


# The following data were copied from
# http://alef.ir/vdceen8wpjh8wvi.b9bj.html?225846
text = """2.6 	33.3 	23.2 	41 	1384
2.6 	34.5 	23.4 	40.4 	1385
2.5 	35.5 	23.5 	39.8 	1386
2.4 	37.2 	22.8 	38 	1387
2.8 	37.3 	23.8 	38.9 	1388
3.2 	38.3 	23.8 	38.3 	1389
2.8 	39.8 	23.3 	36.9 	1390
2.9 	39.8 	24.1 	37.7 	1391
2.5 	39.5 	23.8 	37.6 	1392"""

unemployed = inactive = active = participation = years = ()
for line in text.split('\n'):
    data = line.split()
    unemployed += (float(data[0]),)
    inactive += (float(data[1]),)
    active += (float(data[2]),)
    participation += (float(data[3]),)
    years += (int(data[4]),)

ax = plt.subplot(211)

axistexts = ax.set_xticklabels([str(x) for x in years])
plt.setp(axistexts, rotation=-45, fontsize=10, clip_on=False)

plt.xlim(years[0], years[-1])
plt.xticks(years)
plt.ylim(
    min(unemployed + inactive + active) - 5,
    max(unemployed + inactive + active) + 5
)
plt.yticks(range(0, 41, 5))

plt.plot(years, unemployed, '#FF9900', marker='.', lw=1)
plt.plot(years, inactive, color='r', marker='.', lw=1)
plt.plot(years, active, color='b', marker='.', lw=1)

plt.grid(which='both')

ax = plt.subplot(212)

axistexts = ax.set_xticklabels([str(x) for x in years])
plt.setp(axistexts, rotation=-45, fontsize=10, clip_on=False)
plt.xticks(years)
plt.xlim(years[0], years[-1])
plt.xticks(years)
plt.plot(years, participation, marker='.', lw=1)
plt.grid(which='both')

plt.savefig('Iran_unemployment_1384_1392_SH.svg')
plt.show()

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

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

Date/TimeThumbnailDimensionsUserComment
current04:58, 2 March 2015Thumbnail for version as of 04:58, 2 March 2015720 × 540 (52 KB)Dalba (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata