File:Mitarbeiterentwicklung Deutsche Bank Konzern.svg

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

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

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
Description
Deutsch: Mitarbeiter-Entwicklung des Deutsche-Bank-Konzerns seit 1975
Date
Source Own work
Author Psirus
SVG development
InfoField
 
The source code of this SVG is invalid due to an error.
 
This W3C-invalid plot was created with Matplotlib.
Source code
InfoField

Python code

# coding: utf-8
#!/usr/bin/env python
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle
import numpy as np

data = np.array([
    [1975, 39828, 1011],
    [1976, 39656, 1066],
    [1977, 39418, 1196],
    [1978, 40961, 1533],
    [1979, 42095, 1847],
    [1980, 42225, 1903],
    [1981, 42647, 2153],
    [1982, 43371, 2247],
    [1983, 43926, 3330],
    [1984, 44452, 3421],
    [1985, 45092, 3759],
    [1986, 46431, 4159],
    [1987, 47186, 7393],
    [1988, 46525, 8244],
    [1989, 45594, 10986],
    [1990, 55452, 13820],
    [1991, 57221, 14179],
    [1992, 59916, 14340],
    [1993, 56905, 16271],
    [1994, 54384, 19066],
    [1995, 51957, 22162],
    [1996, 49670, 24686],
    [1997, 49086, 27055],
    [1998, 48742, 26564],
    [1999, 51273, 41959],
    [2000, 50601, 47710],
    [2001, 41191, 45333],
    [2002, 33807, 43635],
    [2003, 29857, 37825],
    [2004, 27093, 38324],
    [2005, 26336, 37091],
    [2006, 26401, 42448],
    [2007, 27779, 50512],
    [2008, 27942, 52514],
    [2009, 27321, 49732],
    [2010, 49265, 52797],
    [2011, 47323, 53673],
    [2012, 46308, 51911],
    [2013, 46377, 51877],
    [2014, 45392, 52746]])

# Prepare axis
fig = plt.figure(figsize=(8, 3))
ax = fig.add_subplot(111)
 
# Plot data
year = data[:, 0]
national = data[:, 1] / 1000
foreign = data[:, 2] / 1000
ax.stackplot(year, national, foreign)
 
# Cosmetics
plt.xlim(min(year), max(year))
ax.minorticks_on()
fig.subplots_adjust(bottom=0.15)
plt.grid()
plt.title(u'Mitarbeiterentwicklung im Deutsche Bank Konzern 1975-2014')
plt.xlabel('Jahr')
plt.ylabel('Mitarbeiter in Tausend')

p1 = Rectangle((0, 0), 1, 1, fc="blue")
p2 = Rectangle((0, 0), 1, 1, fc="green")
plt.legend([p1, p2], ['Inland', 'Ausland'], loc=2)
# Save figure
plt.savefig('deutschebank.svg', transparent=True)

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 3.0 Unported 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
current14:10, 14 December 2015Thumbnail for version as of 14:10, 14 December 2015720 × 270 (66 KB)Kopiersperre (talk | contribs)update 2014
09:56, 22 July 2013Thumbnail for version as of 09:56, 22 July 2013720 × 270 (62 KB)Psirus (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