File:Einwohnerzahl Friedrichroda-Th..svg

Summary

Description
Deutsch: Einwohnerzahl Friedrichroda/Th.

Erzeugt mit Python/Mathplotlib

# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt


jahr_einwohner = [ 
 1805, 1538,
 1836, 1798,
 1849, 2223,
 1871, 2531,
 1894, 3800,
 1900, 4397,
 1905, 4412,
 1910, 4711,
 1925, 5683,
 1933, 5521,
 1937, 5604,
 1946, 7254 ,
 1960, 6167,
 1994, 5770,
 1995, 5701,
 1996, 5675,
 1997, 5630,
 1998, 5505,
 1999, 5540,
 2000, 5496,
 2001, 5470,
 2002, 5398,
 2003, 5446,
 2004, 5412,
 2005, 5307,
 2006, 5289,
 2007, 7684,
 2008, 7546,
 2009, 7475,
 2010, 7410,
 2011, 7360,
 2012, 7392,
 2013, 7433,
 2014, 7551,
 2015, 7549,
 2016, 7471,
 2017, 7405,
 2018, 7275,
 2019, 7195,
 2020, 7164,
 2021, 7115,
 2022, 7408,
 2023, 7395,
 2024, 7352,
]
jahr = jahr_einwohner[::2]
einwohner = jahr_einwohner[1::2]

fig, ax = plt.subplots(layout="constrained")
ax.grid(True)
ax.plot(jahr, einwohner, '.-')
ax.tick_params(axis='x', direction='out', grid_alpha=0.5, rotation=0)
ax.set(xlim=(1800,2030), xticks=[1800, 1849, 1871, 1900, 1925, 1946, 1960, 1989, 2025])
plt.rcParams['figure.figsize']=[8, 5]
plt.xlabel("Jahr")
plt.ylabel("Einwohner")
plt.savefig('friedrichroda_einwohner3.svg') 
plt.show()
Date
Source Own work
Author U2718

Licensing

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.
Category:CC-BY-SA-4.0#Einwohnerzahl%20Friedrichroda-Th..svgCategory:Self-published work
Category:Friedrichroda Category:Charts showing data through 2025 Category:Demographic charts in German Category:Created with Matplotlib
Category:CC-BY-SA-4.0 Category:Charts showing data through 2025 Category:Created with Matplotlib Category:Demographic charts in German Category:Friedrichroda Category:Self-published work