Skip to content
Snippets Groups Projects
Commit 6d7c8b83 authored by Späth, Prof. Dr. Sebastian's avatar Späth, Prof. Dr. Sebastian
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
%% Cell type:code id:ec5a5281 tags:
``` python
%matplotlib inline
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
```
%% Cell type:code id:d50e7f08 tags:
``` python
#Datasource https://www.destatis.de/DE/Themen/Gesellschaft-Umwelt/Bevoelkerung/Sterbefaelle-Lebenserwartung/Tabellen/sonderauswertung-sterbefaelle.html?nn=209016
# 22.11.2021
df = pd.read_csv('sterbefaelle.csv')
df.head(3)
df.columns
#df = df.set_index('Bundesland')
```
%% Output
Index(['Jahr', 'Bundesland', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10',
'11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22',
'23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34',
'35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46',
'47', '48', '49', '50', '51', '52', '53'],
dtype='object')
%% Cell type:code id:dd29c69e tags:
``` python
# Use values from 2016-2019 and take avg per week
sterb_norm = df[df.Jahr<2020].groupby(['Bundesland']).mean()
#Jahr does not make sense after aggregation
sterb_norm = sterb_norm.drop('Jahr', axis=1)
sterb_norm.head(20)
```
%% Output
1 2 3 4 5 6 \
Bundesland
Baden-Württemberg 2273.00 2332.25 2332.25 2392.00 2390.25 2400.00
Bayern 2824.00 2883.00 2881.50 2878.50 2933.50 2897.25
Berlin 702.50 724.50 751.50 733.25 765.75 774.25
Brandenburg 663.25 660.50 675.75 648.50 691.00 705.75
Bremen 164.25 164.00 148.25 174.75 172.75 166.00
Hamburg 374.25 371.00 379.00 385.75 386.25 370.25
Hessen 1343.00 1370.50 1375.00 1399.75 1452.00 1442.00
Mecklenburg-Vorpommern 452.00 455.50 439.50 450.00 449.50 429.75
Niedersachsen 1973.50 1966.50 1979.75 1996.25 2057.25 2024.00
Nordrhein-Westfalen 4191.50 4305.75 4238.75 4357.75 4489.75 4513.75
Rheinland-Pfalz 977.00 989.25 969.25 969.75 1028.00 1010.25
Saarland 268.25 275.00 269.25 273.75 283.25 294.50
Sachsen 1133.75 1146.25 1128.50 1175.75 1174.00 1215.50
Sachsen-Anhalt 692.00 677.75 653.25 664.25 686.00 690.50
Schleswig-Holstein 711.75 690.00 728.00 737.00 749.25 770.25
Thüringen 609.25 600.50 603.75 629.50 667.25 634.00
7 8 9 10 ... 43 \
Bundesland ...
Baden-Württemberg 2394.25 2448.75 2520.25 2440.25 ... 2046.50
Bayern 2929.50 2949.75 3007.50 2965.25 ... 2482.25
Berlin 780.00 813.25 796.75 763.50 ... 630.75
Brandenburg 718.50 735.00 719.25 716.75 ... 573.75
Bremen 174.25 176.50 191.75 172.50 ... 145.25
Hamburg 375.75 382.25 392.25 374.00 ... 348.50
Hessen 1437.00 1501.00 1505.00 1503.50 ... 1220.50
Mecklenburg-Vorpommern 471.75 489.75 455.25 480.25 ... 387.00
Niedersachsen 2075.50 2111.25 2223.25 2165.50 ... 1725.75
Nordrhein-Westfalen 4549.00 4568.00 4780.25 4786.50 ... 3757.50
Rheinland-Pfalz 1061.50 1094.00 1102.50 1087.00 ... 868.00
Saarland 283.25 286.50 315.75 315.75 ... 230.25
Sachsen 1234.75 1254.00 1286.25 1273.50 ... 996.75
Sachsen-Anhalt 744.50 731.25 768.50 776.00 ... 586.75
Schleswig-Holstein 773.00 792.25 794.75 787.75 ... 632.00
Thüringen 640.00 661.00 686.00 697.00 ... 513.50
44 45 46 47 48 49 \
Bundesland
Baden-Württemberg 2041.50 2136.00 2111.50 2129.75 2143.00 2200.75
Bayern 2498.25 2544.75 2572.00 2599.00 2580.75 2641.50
Berlin 663.25 642.00 650.75 653.50 670.50 681.25
Brandenburg 576.75 598.00 596.25 585.50 607.00 655.50
Bremen 151.00 152.00 161.00 154.00 152.25 161.25
Hamburg 300.00 331.25 362.75 352.25 350.25 348.00
Hessen 1226.50 1248.00 1280.75 1279.75 1306.00 1319.00
Mecklenburg-Vorpommern 385.50 395.50 400.75 404.75 405.75 410.25
Niedersachsen 1736.50 1774.50 1795.00 1799.00 1840.00 1884.25
Nordrhein-Westfalen 3764.50 3841.75 3892.25 3980.00 3967.75 4133.75
Rheinland-Pfalz 843.00 905.75 898.50 927.25 903.00 953.25
Saarland 246.75 253.00 259.25 256.75 253.00 262.25
Sachsen 1004.75 1021.50 1039.75 1027.75 1058.25 1073.00
Sachsen-Anhalt 570.00 603.50 579.50 617.25 656.00 627.50
Schleswig-Holstein 634.50 660.75 658.75 660.50 696.50 695.00
Thüringen 538.50 545.75 558.50 549.75 583.75 596.75
50 51 52
Bundesland
Baden-Württemberg 2198.50 2221.50 2219.50
Bayern 2729.00 2749.75 2723.50
Berlin 684.00 682.00 702.00
Brandenburg 614.75 651.25 639.50
Bremen 157.00 148.50 148.25
Hamburg 364.50 354.75 351.50
Hessen 1324.50 1324.50 1333.75
Mecklenburg-Vorpommern 441.50 434.25 410.50
Niedersachsen 1866.00 1910.00 1847.00
Nordrhein-Westfalen 4066.00 4205.75 4054.75
Rheinland-Pfalz 920.50 939.75 944.25
Saarland 253.75 259.50 262.50
Sachsen 1096.75 1123.75 1125.50
Sachsen-Anhalt 651.75 671.25 635.75
Schleswig-Holstein 663.50 715.25 684.75
Thüringen 576.25 590.25 555.50
[16 rows x 52 columns]
%% Cell type:code id:ab1f10bc tags:
``` python
sterb_21 = df[df.Jahr==2021].groupby(['Bundesland']).mean()
uebersterb = sterb_21 / sterb_norm
uebersterb = uebersterb.mean(axis=1)
uebersterb.name = "Übersterblichkeit"
uebersterb.sort_values().plot(style='.')
#uebersterb.mean(axis=1).plot.scatter(x="Bundesland")
#df_totalPerWeek = df[df.Jahr<2020].groupby('Bundesland','Jahr').sum()
#df_totalPerWeek=df_totalPerWeek.drop('Jahr', axis=1)
#df_totalPerWeek.head()
```
%% Output
<AxesSubplot:xlabel='Bundesland'>
%% Cell type:code id:c9612c26 tags:
``` python
#https://github.com/robert-koch-institut/COVID-19-Impfungen_in_Deutschland
```
%% Cell type:code id:28abfac5 tags:
``` python
df_impf = pd.read_csv('Impfquoten.csv')
df_impf = df_impf[df_impf.Bundesland!="Deutschland"].drop('Datum', axis=1) # Drop column 'Datum', row "Deutschland"
df_impf = df_impf.set_index('Bundesland')
#df_impf.columns
df_impf.sort_values(by='Impfquote').plot(style='.')
#Merge both dataset into a combined one
df_total = pd.merge(df_impf,uebersterb, left_index=True, right_index=True)
```
%% Output
%% Cell type:code id:ff16225f tags:
``` python
#Colors:
cmap = cm.get_cmap('Spectral')
fig, ax = plt.subplots(figsize=(20,10))
plot1 = df_total.plot.scatter(x="Impfquote",y="Übersterblichkeit",label="Bundesland",title="Übersterblichkeit vs Impfquote", grid=True,
ax=ax, style='o', legend=False, s=150, fontsize=18,
color=range(len(df_total)), colormap='Spectral')
#ax.legend(plot1,["1","2"],fancybox=True)
#df_total.head()
for k, v in df_total.iterrows():
ax.annotate(k, v,
xytext=(9,-3), textcoords='offset points',
family='sans-serif', fontsize=11, color='black')
```
%% Output
Datum,Bundesland,Impfquote
2021-11-30,Deutschland,68.6
2021-11-30,Schleswig-Holstein,72.8
2021-11-30,Hamburg,74.5
2021-11-30,Niedersachsen,70.4
2021-11-30,Bremen,80.2
2021-11-30,Nordrhein-Westfalen,71.8
2021-11-30,Hessen,67.7
2021-11-30,Rheinland-Pfalz,68.3
2021-11-30,Baden-Württemberg,66.8
2021-11-30,Bayern,66.9
2021-11-30,Saarland,75.0
2021-11-30,Berlin,69.3
2021-11-30,Brandenburg,62.2
2021-11-30,Mecklenburg-Vorpommern,67.0
2021-11-30,Sachsen,58.2
2021-11-30,Sachsen-Anhalt,65.1
2021-11-30,Thüringen,62.7
README 0 → 100644
File added
Jahr,Bundesland,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53
2021,Schleswig-Holstein,803,794,849,826,777,797,819,677,675,714,735,653,670,677,706,696,673,710,641,665,687,662,641,737,606,647,640,663,602,653,657,658,645,647,610,680,632,659,670,681,675,698,,,,,,,,,,,
2021,Hamburg,451,437,462,396,416,363,405,346,353,362,324,333,336,308,346,353,339,353,332,316,318,358,359,383,314,356,289,340,330,347,335,336,329,345,348,366,354,302,351,312,294,304,,,,,,,,,,,
2021,Niedersachsen,2164,2092,2166,2164,2179,2133,2061,1945,1827,1884,1907,1778,1797,1845,1818,1871,1882,1893,1789,1766,1719,1934,1743,1967,1685,1704,1756,1781,1755,1755,1708,1789,1734,1771,1761,1940,1839,1851,1794,1799,1819,1924,,,,,,,,,,,
2021,Bremen,181,158,156,148,182,164,165,159,155,145,154,169,136,167,167,154,172,150,135,145,127,152,150,132,148,153,164,140,138,128,131,172,145,148,128,162,155,122,166,149,136,142,,,,,,,,,,,
2021,Nordrhein-Westfalen,4878,5004,4941,4750,4546,4435,4409,4188,4073,4032,3853,4061,3993,4068,4145,4193,4188,4318,4124,3879,3748,3897,3835,4226,3787,3765,3722,3858,3819,3754,3761,3820,3849,3807,3821,4224,3941,3993,3930,3958,4019,4149,,,,,,,,,,,
2021,Hessen,1858,1807,1738,1679,1537,1505,1499,1366,1303,1324,1291,1312,1310,1324,1389,1334,1412,1372,1308,1247,1201,1285,1239,1366,1191,1212,1149,1278,1317,1209,1166,1190,1220,1193,1249,1288,1276,1245,1265,1282,1252,1384,,,,,,,,,,,
2021,Rheinland-Pfalz,1177,1222,1211,1120,1024,994,964,889,863,876,939,857,905,915,937,938,961,973,890,884,873,910,797,1006,827,849,850,1028,932,865,866,984,878,828,883,952,905,911,922,968,954,941,,,,,,,,,,,
2021,Baden-Württemberg,2771,2773,2749,2531,2379,2289,2238,2123,2086,2053,2030,2123,2066,2235,2186,2184,2332,2208,2178,2105,2016,2155,2066,2229,2016,1932,1972,1990,2139,1991,1936,2018,2045,2013,1991,2141,2114,2137,2071,2109,2314,2391,,,,,,,,,,,
2021,Bayern,3611,3598,3438,3191,3059,2902,2916,2586,2558,2690,2666,2634,2730,2594,2662,2772,2778,2732,2640,2515,2433,2489,2372,2575,2500,2363,2452,2380,2511,2470,2407,2540,2477,2364,2475,2704,2535,2563,2618,2647,2780,2904,,,,,,,,,,,
2021,Saarland,355,298,332,274,318,301,322,298,251,245,247,243,267,231,268,238,247,265,250,250,217,265,272,288,216,227,238,232,254,233,235,250,262,255,251,282,251,254,232,270,270,276,,,,,,,,,,,
2021,Berlin,1040,931,927,822,815,790,751,723,738,675,699,675,688,710,725,720,684,701,666,648,625,672,675,695,689,627,651,662,626,659,645,603,637,585,638,635,636,671,651,657,681,722,,,,,,,,,,,
2021,Brandenburg,1047,1057,936,864,814,791,721,690,652,676,676,640,659,692,734,698,700,632,689,628,603,696,619,648,613,625,648,673,632,601,596,617,652,619,624,666,600,623,646,615,648,688,,,,,,,,,,,
2021,Mecklenburg-Vorpommern,507,536,575,557,560,513,477,441,439,464,404,431,437,448,422,477,503,452,424,389,391,419,428,480,437,404,411,431,419,393,388,379,432,404,428,441,443,475,433,414,469,513,,,,,,,,,,,
2021,Sachsen,2068,1833,1709,1537,1467,1388,1262,1135,1101,1150,1073,1126,1110,1177,1183,1197,1189,1213,1182,1106,1029,976,1028,1054,995,969,895,990,965,956,956,938,1011,957,906,997,1006,1004,975,993,1109,1169,,,,,,,,,,,
2021,Sachsen-Anhalt,981,1007,1035,934,868,846,765,709,707,689,692,688,670,715,692,721,754,682,676,617,618,679,609,647,620,580,598,617,583,633,599,613,554,605,561,661,632,607,620,586,693,607,,,,,,,,,,,
2021,Thüringen,941,948,842,842,782,707,687,667,646,614,629,649,709,700,670,667,668,640,650,609,526,583,551,582,503,530,481,521,513,514,559,574,505,534,557,558,554,527,565,523,545,651,,,,,,,,,,,
2020,Schleswig-Holstein,758,747,713,662,740,709,737,648,744,710,731,756,705,693,689,667,675,632,667,589,638,602,590,617,636,676,650,581,625,642,594,666,734,678,582,641,629,644,661,698,634,675,686,631,659,676,636,641,709,747,733,746,805
2020,Hamburg,344,378,344,340,370,369,342,351,339,364,350,355,370,426,394,387,377,316,365,312,331,313,331,302,339,340,308,301,317,329,316,328,426,350,321,330,317,319,288,311,314,337,340,314,331,359,380,384,436,393,433,404,449
2020,Niedersachsen,1937,2054,1902,1937,1896,1936,1969,1928,1943,2025,1999,2012,1985,2064,2031,1824,1834,1791,1783,1806,1688,1706,1822,1649,1629,1717,1634,1547,1701,1648,1734,1744,2110,1807,1690,1702,1757,1731,1849,1789,1736,1783,1774,1821,1793,1853,1953,1954,1890,2166,2073,2171,2155
2020,Bremen,144,178,134,175,178,160,181,170,155,188,167,144,160,188,161,167,140,157,134,137,127,169,143,139,158,161,155,146,154,129,159,144,195,163,146,159,135,142,152,143,143,148,151,161,147,137,156,164,174,167,162,160,160
2020,Nordrhein-Westfalen,4082,4193,4197,3986,4265,4085,4300,4212,4293,4389,4462,4378,4345,4429,4484,4173,4014,3861,3775,3750,3791,3695,3788,3656,3617,3905,3688,3490,3602,3676,3822,3976,4746,3959,3669,3669,3787,3872,3817,3693,3845,3865,4119,4098,4231,4235,4417,4507,4652,4870,4982,5006,5105
2020,Hessen,1361,1377,1338,1394,1345,1351,1396,1302,1346,1401,1417,1326,1325,1382,1421,1371,1269,1220,1279,1204,1246,1248,1215,1196,1169,1155,1143,1123,1152,1235,1296,1210,1336,1228,1193,1231,1209,1300,1282,1232,1254,1272,1342,1381,1375,1460,1444,1540,1659,1692,1840,1867,1861
2020,Rheinland-Pfalz,924,1005,956,926,1012,936,978,945,989,960,1058,977,940,1017,981,888,914,872,934,847,867,889,880,762,797,920,815,843,839,826,878,885,1014,865,800,816,812,940,914,878,894,842,946,912,938,1023,952,1082,1155,1229,1163,1248,1233
2020,Baden-Württemberg,2229,2165,2213,2171,2370,2277,2261,2194,2294,2342,2354,2410,2485,2609,2570,2453,2270,2120,2135,2009,2007,1895,2018,1884,1932,2017,1853,1909,1823,1967,2088,1970,2195,2061,2013,1968,1962,2025,1975,2103,2021,1998,2227,2180,2274,2284,2448,2565,2694,2862,2910,2950,2779
2020,Bayern,2685,2764,2695,2821,3041,2803,2883,2780,2821,2768,2787,2967,2908,3270,3284,3078,2793,2701,2531,2436,2450,2431,2508,2396,2289,2364,2313,2321,2390,2392,2596,2412,2592,2433,2361,2394,2478,2474,2424,2648,2598,2541,2632,2685,2733,2878,2871,3088,3424,3618,3621,3817,3721
2020,Saarland,266,259,266,256,300,262,269,266,293,308,275,281,303,313,279,298,248,241,265,215,243,217,218,235,225,218,222,242,225,244,213,252,293,245,231,228,247,251,252,262,270,260,292,247,308,298,279,284,306,311,310,292,317
2020,Berlin,682,699,743,739,707,750,687,688,746,707,694,680,736,736,740,668,691,701,683,666,669,620,637,668,614,662,608,599,630,667,669,706,740,682,623,615,650,658,663,673,688,706,717,723,740,850,793,856,964,943,1021,1030,1031
2020,Brandenburg,660,703,677,663,694,684,723,646,652,638,669,633,676,715,681,652,701,587,584,574,559,556,612,612,593,595,591,582,607,610,609,610,670,599,588,577,604,609,585,575,602,646,673,624,632,678,669,772,805,855,976,1070,1111
2020,Mecklenburg-Vorpommern,411,413,421,396,454,399,424,421,476,452,458,447,465,432,419,394,382,421,403,382,408,416,389,409,382,404,413,356,392,404,397,408,424,394,406,414,390,417,365,414,402,400,389,402,412,440,441,466,474,466,449,508,452
2020,Sachsen,1122,1216,1090,1139,1121,1132,1198,1111,1156,1125,1099,1139,1072,1137,1149,1063,1055,1113,1020,983,1011,923,1016,965,944,990,956,1012,1001,1005,1015,995,1059,959,952,1006,1015,1042,1045,1006,947,1061,1134,1212,1259,1333,1515,1655,1817,2100,2385,2438,2360
2020,Sachsen-Anhalt,724,634,660,671,674,648,690,694,662,671,689,636,656,644,615,597,622,641,582,583,596,575,589,584,557,647,620,567,596,572,540,627,672,625,576,576,623,587,615,638,609,664,630,617,631,654,608,691,720,798,850,947,1002
2020,Thüringen,554,623,604,551,607,537,610,597,596,619,640,581,547,607,604,581,572,546,511,508,532,521,506,527,520,522,488,523,483,541,507,537,514,511,505,463,540,544,559,551,544,556,536,576,544,569,620,655,725,786,816,900,953
2019,Schleswig-Holstein,687,667,732,732,717,753,744,769,716,734,722,708,741,682,621,633,701,678,667,592,626,600,665,592,643,647,639,630,650,623,646,635,639,580,679,607,603,637,630,626,651,654,627,677,700,675,698,726,729,712,716,687,X
2019,Hamburg,353,355,356,370,374,383,348,350,384,386,388,317,346,361,326,365,332,330,308,369,346,280,343,304,275,333,300,285,308,336,316,293,322,312,332,277,299,329,310,326,342,360,360,285,329,364,357,327,365,371,318,327,X
2019,Niedersachsen,1809,1869,1936,1944,1990,2019,1945,2013,2068,2068,1937,1917,1873,1879,1818,1889,1832,1763,1779,1784,1672,1656,1721,1682,1705,1752,1631,1676,1682,1897,1723,1657,1606,1674,1726,1610,1659,1701,1774,1685,1833,1730,1779,1723,1765,1858,1826,1884,1892,1941,1912,1795,X
2019,Bremen,171,168,117,159,171,168,162,168,178,151,174,129,153,141,140,146,151,165,134,156,122,135,153,154,145,123,126,131,139,178,146,141,123,130,132,123,131,140,152,147,158,144,128,164,148,157,170,166,149,168,126,135,X
2019,Nordrhein-Westfalen,4095,4257,4121,4253,4400,4368,4465,4519,4540,4488,4288,4292,4135,4174,4004,3996,3836,3697,3738,3808,3637,3760,3824,3562,3557,4149,3530,3598,3646,4883,3812,3596,3484,3669,3849,3464,3511,3572,3758,3720,3871,3917,3877,3824,3830,3955,4130,4076,4236,4185,4097,3896,X
2019,Hessen,1329,1303,1376,1371,1479,1415,1423,1468,1483,1470,1365,1310,1321,1296,1307,1298,1259,1220,1194,1202,1208,1222,1213,1167,1148,1272,1109,1158,1216,1385,1241,1196,1118,1143,1245,1123,1216,1161,1187,1220,1267,1233,1176,1255,1270,1348,1292,1357,1374,1389,1339,1294,X
2019,Rheinland-Pfalz,975,998,975,1000,974,1022,1081,1072,1040,1035,1057,982,950,937,897,919,885,889,802,880,840,851,870,846,866,892,856,841,871,1023,819,821,771,743,919,827,793,902,879,806,880,922,873,844,906,957,976,925,981,936,971,912,X
2019,Baden-Württemberg,2185,2387,2359,2404,2353,2385,2404,2448,2542,2383,2385,2237,2208,2239,2015,2132,2079,1981,2015,2124,2078,2008,2008,1927,1967,2162,2111,1899,1985,2296,1963,1994,1855,1914,2032,1873,1927,1856,2087,1980,2079,2057,2065,2084,2213,2116,2243,2223,2203,2295,2255,2224,X
2019,Bayern,2681,2782,2819,2822,2863,2827,2910,2964,3031,2938,2864,2783,2593,2657,2595,2479,2527,2393,2431,2409,2555,2400,2497,2255,2386,2449,2389,2272,2423,2748,2439,2292,2211,2359,2468,2226,2274,2342,2589,2485,2472,2533,2500,2518,2562,2645,2622,2669,2778,2771,2793,2650,X
2019,Saarland,267,244,265,282,274,272,286,257,288,310,282,270,285,257,248,279,272,272,267,283,263,261,260,216,262,273,259,231,253,280,228,226,240,212,240,241,248,240,256,256,260,262,231,257,292,245,260,237,275,253,274,254,X
2019,Berlin,707,710,695,698,728,765,806,767,815,735,744,690,650,672,702,660,631,631,680,644,629,642,653,664,641,648,603,623,594,646,629,620,607,600,715,611,588,633,657,606,617,658,625,622,641,693,627,646,716,709,660,704,X
2019,Brandenburg,643,670,635,629,685,674,697,667,686,686,682,637,616,630,582,646,615,592,548,503,610,555,608,584,598,617,569,583,563,625,619,559,529,541,632,578,549,562,583,563,629,666,583,596,627,605,610,641,702,597,686,632,X
2019,Mecklenburg-Vorpommern,422,451,433,448,459,459,441,459,424,476,443,456,412,415,411,420,445,382,400,434,386,416,417,370,397,416,361,386,408,407,357,391,404,382,429,380,383,418,419,399,414,409,381,401,425,404,423,455,400,452,431,416,X
2019,Sachsen,1071,1105,1096,1163,1053,1161,1136,1178,1225,1202,1133,1049,1048,1104,1004,1052,1090,949,1006,1021,1016,1006,1067,1016,988,1077,1028,973,989,1069,993,998,946,1023,1060,923,990,962,974,990,1054,1030,1004,1088,1027,1041,1042,1066,1047,1077,1211,1123,X
2019,Sachsen-Anhalt,692,619,654,635,646,715,692,663,728,750,711,656,617,632,597,619,650,629,568,577,560,582,678,599,566,599,531,553,600,634,585,593,556,500,627,578,593,563,575,557,632,598,610,575,624,573,656,641,660,662,681,614,X
2019,Thüringen,599,585,594,595,646,595,610,587,642,641,620,583,614,595,585,556,589,519,581,529,532,547,514,546,495,509,510,480,529,600,518,528,523,481,552,547,539,482,572,533,507,540,508,575,500,606,603,542,636,583,592,541,X
2018,Schleswig-Holstein,752,650,719,775,757,771,799,904,947,969,924,897,822,753,748,641,688,633,656,618,597,627,598,582,618,632,614,601,648,712,780,663,579,598,612,612,594,660,570,648,647,601,617,621,632,606,651,714,717,651,728,669,X
2018,Hamburg,350,344,388,377,394,369,399,426,432,427,460,406,418,365,353,344,273,336,342,318,319,343,310,317,306,320,323,289,295,350,414,341,328,331,299,305,291,312,306,315,330,305,332,300,348,347,405,370,351,362,374,363,X
2018,Niedersachsen,1966,1905,1997,1988,2067,2011,2134,2263,2605,2705,2545,2374,2088,2059,1929,1877,1630,1640,1687,1649,1646,1736,1630,1552,1585,1671,1686,1682,1620,2016,2085,1727,1669,1611,1674,1649,1611,1586,1620,1643,1689,1656,1658,1752,1775,1671,1841,1775,1880,1768,1830,1780,X
2018,Bremen,161,178,151,186,179,143,180,195,256,230,229,174,184,172,164,144,128,134,132,114,130,147,138,135,147,132,136,139,147,153,189,154,123,138,138,160,148,145,114,143,129,148,144,137,126,165,144,154,167,141,155,141,X
2018,Nordrhein-Westfalen,4270,4174,4164,4239,4221,4538,4732,5065,5944,6179,5331,5081,4578,4501,4199,4025,3720,3588,3864,3641,3606,3862,3671,3385,3480,3633,3638,3567,3871,4283,4712,4216,3694,3522,3541,3661,3564,3690,3491,3685,3780,3646,3525,3710,3854,3598,3758,3913,3972,3821,4209,3949,X
2018,Hessen,1309,1329,1346,1327,1327,1369,1484,1612,1701,1833,1661,1546,1429,1403,1287,1252,1233,1193,1188,1199,1111,1133,1148,1097,1089,1182,1163,1118,1161,1285,1430,1323,1187,1258,1140,1204,1232,1190,1165,1182,1193,1219,1203,1232,1257,1188,1296,1284,1291,1293,1422,1289,X
2018,Rheinland-Pfalz,972,959,890,924,954,923,1102,1202,1330,1412,1256,1163,1020,977,984,919,845,828,900,820,832,863,827,827,811,910,830,808,853,960,993,939,843,903,793,808,819,802,838,864,871,831,828,842,920,862,905,907,942,877,960,923,X
2018,Baden-Württemberg,2269,2142,2282,2197,2257,2301,2447,2644,2953,3037,2763,2568,2351,2200,2223,2090,1973,1994,1982,1880,1939,1914,2030,1788,1812,1935,1979,1822,1944,2058,2292,2274,2015,2034,1851,1905,1894,2053,1872,1913,2007,1923,2055,1947,2119,2022,2105,2163,2183,2133,2152,2171,X
2018,Bayern,2734,2715,2784,2772,2848,2924,3019,3157,3444,3500,3230,3100,2929,2794,2680,2499,2491,2451,2371,2333,2450,2339,2479,2249,2266,2379,2414,2309,2350,2329,2700,2559,2407,2359,2189,2323,2274,2359,2273,2399,2365,2351,2457,2457,2508,2417,2596,2541,2578,2669,2756,2541,X
2018,Saarland,261,275,262,275,280,326,296,366,383,415,403,324,297,287,264,288,233,257,241,276,225,221,249,220,246,237,245,248,236,267,265,277,241,248,250,236,237,258,242,253,252,229,213,258,232,250,262,244,250,236,255,248,X
2018,Berlin,681,708,757,700,759,747,789,873,852,969,900,860,784,771,738,664,660,624,662,630,632,646,613,592,614,553,606,562,592,686,803,729,705,609,654,632,633,640,589,637,624,594,662,665,660,629,723,688,704,632,706,659,X
2018,Brandenburg,614,601,703,632,659,684,711,794,844,908,862,772,795,717,708,649,583,583,613,537,571,623,531,538,518,574,527,540,552,629,715,669,582,588,511,538,535,531,524,556,613,596,575,557,603,574,581,613,645,598,694,631,X
2018,Mecklenburg-Vorpommern,463,467,440,448,426,429,478,540,527,589,572,546,494,500,464,387,414,382,395,386,364,400,381,373,369,396,395,367,361,408,476,399,357,377,379,361,385,366,389,361,414,388,384,372,380,406,430,397,417,447,445,406,X
2018,Sachsen,1195,1074,1066,1143,1138,1235,1344,1344,1538,1650,1494,1391,1255,1230,1123,1029,1091,1023,1002,927,1004,1029,1034,893,916,901,976,958,986,1014,1205,1074,1043,993,917,933,956,1002,904,964,951,957,938,956,1016,1012,996,1084,1060,1091,1046,1052,X
2018,Sachsen-Anhalt,718,677,664,630,679,662,757,758,941,1013,911,857,777,679,672,626,617,607,653,626,577,638,570,567,579,577,582,549,609,632,737,618,564,534,544,550,566,521,547,557,597,579,546,581,606,542,599,677,623,645,662,591,X
2018,Thüringen,627,572,574,558,613,654,583,745,838,941,844,718,685,630,629,558,514,516,538,534,510,518,505,467,487,537,508,511,477,558,575,516,553,509,508,513,553,536,525,502,531,529,471,508,568,553,493,567,562,579,596,541,X
2017,Schleswig-Holstein,678,724,728,703,805,867,873,859,846,691,735,674,662,652,644,626,678,645,649,636,592,651,600,602,589,600,594,563,605,620,597,622,633,632,569,589,623,583,597,643,651,643,635,596,619,656,664,648,683,657,733,687,X
2017,Hamburg,379,420,406,419,429,383,423,407,402,350,357,327,366,327,314,358,324,338,295,321,322,320,313,267,306,305,336,291,337,312,319,330,325,319,328,309,290,306,297,320,303,303,356,285,315,371,336,357,309,360,366,335,X
2017,Niedersachsen,2105,2160,2064,2087,2277,2208,2317,2346,2216,2014,1951,1794,1768,1699,1669,1667,1785,1711,1757,1784,1678,1622,1593,1535,1699,1572,1631,1592,1634,1567,1651,1627,1671,1641,1641,1533,1627,1652,1712,1692,1759,1674,1693,1712,1718,1778,1804,1829,1843,1903,1878,1871,X
2017,Bremen,176,178,166,184,179,185,181,209,190,152,155,133,159,134,148,150,163,149,139,147,160,147,144,139,143,145,136,140,157,125,119,120,119,137,138,135,149,139,157,164,151,145,136,144,159,150,160,127,164,162,141,154,X
2017,Nordrhein-Westfalen,4482,4792,4623,4825,5238,5067,4851,4681,4492,4247,4159,3931,3891,3684,3748,3727,3933,3789,3873,3739,3630,3763,3431,3630,3764,3451,3637,3444,3674,3575,3468,3478,3506,3454,3508,3467,3492,3559,3663,3584,3793,3828,3700,3654,3786,3914,3988,3998,4159,4061,4265,4121,X
2017,Hessen,1429,1541,1497,1588,1757,1684,1628,1596,1489,1374,1273,1243,1244,1190,1128,1166,1280,1280,1193,1169,1162,1208,1124,1153,1200,1166,1185,1072,1162,1132,1191,1172,1210,1148,1149,1153,1172,1213,1229,1153,1245,1210,1239,1177,1243,1224,1239,1265,1290,1274,1237,1361,X
2017,Rheinland-Pfalz,1055,1089,1088,1042,1248,1197,1114,1148,1027,948,947,936,918,905,879,858,876,876,904,856,872,894,767,815,895,833,886,805,909,800,857,715,788,818,783,834,764,838,857,809,886,851,851,859,903,879,900,919,949,933,916,945,X
2017,Baden-Württemberg,2523,2689,2510,2779,2907,2739,2561,2587,2405,2126,2145,2012,2054,1915,1998,1917,1989,1941,2014,1928,1930,1925,1806,1836,2023,1915,1981,1767,1951,1958,1960,1781,1897,1862,1867,1833,1887,1955,1961,2001,1992,1982,2008,2036,2092,2039,2046,2108,2128,2155,2140,2219,X
2017,Bayern,3291,3395,3272,3389,3398,3145,3142,3038,2872,2778,2671,2570,2496,2534,2477,2331,2443,2354,2435,2417,2278,2504,2294,2368,2413,2446,2291,2154,2376,2259,2404,2262,2299,2293,2232,2201,2342,2336,2402,2386,2615,2476,2496,2371,2547,2538,2527,2510,2528,2679,2569,2643,X
2017,Saarland,295,328,306,291,313,306,331,285,332,264,277,248,240,245,233,234,253,251,234,236,248,234,242,228,248,235,268,237,217,222,221,226,224,214,243,219,226,265,264,230,260,248,224,237,249,264,257,262,252,247,253,264,X
2017,Berlin,760,772,828,826,848,834,852,882,760,668,694,649,709,623,646,640,641,592,660,684,593,608,597,605,557,580,556,588,566,583,634,584,600,544,586,581,617,643,611,654,688,677,590,651,654,617,603,605,635,728,663,665,X
2017,Brandenburg,731,733,716,717,799,806,837,807,699,641,641,582,614,613,549,562,611,582,592,587,555,568,575,560,569,523,532,514,566,556,567,526,559,545,590,505,578,539,519,600,615,557,591,604,555,643,584,561,648,622,590,658,X
2017,Mecklenburg-Vorpommern,436,443,470,470,474,429,527,526,471,440,373,385,411,404,391,360,428,396,373,397,412,392,349,333,364,336,354,350,385,378,383,358,345,349,375,357,381,356,347,365,392,382,379,382,425,390,392,368,415,447,431,407,X
2017,Sachsen,1235,1347,1229,1231,1391,1369,1406,1390,1295,1144,1065,1008,1025,953,1000,939,1036,1076,1056,978,933,943,936,944,975,901,954,976,913,925,1015,966,912,919,969,977,902,1001,965,967,960,1006,980,982,964,1022,1036,1053,1067,1061,1101,1108,X
2017,Sachsen-Anhalt,700,765,679,791,784,784,902,804,733,688,632,616,606,601,573,597,623,620,625,619,585,592,576,539,549,545,590,596,609,544,594,552,564,504,564,543,582,613,610,597,621,629,627,572,577,575,616,655,624,671,662,677,X
2017,Thüringen,643,694,654,741,793,741,738,701,701,577,590,532,568,549,504,505,571,529,544,581,501,531,499,533,525,523,493,514,528,502,514,465,496,501,522,470,514,507,556,499,539,528,554,500,565,534,524,612,601,544,555,537,X
2016,Schleswig-Holstein,730,719,733,738,718,690,676,637,670,757,689,740,736,684,666,661,640,650,651,609,599,579,621,570,637,557,531,545,622,559,634,613,606,597,628,623,600,547,585,625,644,697,649,644,692,698,629,698,651,634,684,696,X
2016,Hamburg,415,365,366,377,348,346,333,346,351,333,356,343,362,343,317,312,284,309,343,329,299,315,284,339,324,287,297,306,331,307,301,310,296,307,286,283,314,295,274,304,355,351,346,330,333,369,311,347,367,365,361,381,X
2016,Niedersachsen,2014,1932,1922,1966,1895,1858,1906,1823,2004,1875,1882,1931,1882,1845,1842,1638,1784,1733,1827,1725,1684,1656,1584,1597,1688,1544,1697,1628,1645,1623,1538,1508,1556,1772,1637,1639,1662,1596,1614,1678,1714,1778,1773,1759,1840,1873,1725,1872,1922,1852,2020,1942,X
2016,Bremen,149,132,159,170,162,168,174,134,143,157,132,154,150,136,145,122,121,123,150,152,143,170,152,135,129,118,131,137,158,153,123,115,149,169,117,135,140,141,158,153,148,143,173,159,175,172,142,162,165,157,172,163,X
2016,Nordrhein-Westfalen,3919,4000,4047,4114,4100,4082,4148,4007,4145,4232,4343,4300,4165,4173,3936,3799,3793,3780,4031,3676,3632,3597,3426,3499,3713,3490,3666,3740,3899,3548,3381,3431,3719,3893,3576,3615,3697,3498,3620,3565,3825,3793,3928,3870,3897,4102,4044,3884,4168,4197,4252,4253,X
2016,Hessen,1305,1309,1281,1313,1245,1300,1213,1328,1347,1337,1320,1329,1311,1232,1270,1241,1252,1185,1241,1138,1110,1248,1163,1124,1174,1089,1124,1122,1201,1119,1072,1078,1143,1217,1181,1116,1156,1138,1112,1118,1246,1200,1264,1242,1222,1363,1292,1318,1321,1342,1300,1391,X
2016,Rheinland-Pfalz,906,911,924,913,936,899,949,954,1013,953,999,914,961,967,911,817,855,844,898,845,853,818,798,798,836,759,851,846,866,805,785,776,792,881,781,810,814,774,835,855,917,877,920,827,894,896,928,861,941,936,912,997,X
2016,Baden-Württemberg,2115,2111,2178,2188,2044,2175,2165,2116,2181,2215,2175,2250,2165,2139,2032,1952,2011,1946,2019,1923,1877,1878,1916,1804,2025,1914,1920,1824,2011,1881,1825,1861,1934,1969,1872,1838,1876,1877,1960,1910,2116,2099,2058,2099,2120,2269,2125,2078,2289,2211,2339,2264,X
2016,Bayern,2590,2640,2651,2531,2625,2693,2647,2640,2683,2645,2602,2478,2629,2460,2506,2382,2360,2390,2420,2363,2293,2236,2302,2249,2385,2252,2300,2301,2492,2276,2206,2228,2362,2411,2257,2277,2308,2153,2315,2267,2522,2543,2476,2647,2562,2688,2651,2603,2682,2797,2881,3060,X
2016,Saarland,250,253,244,247,266,274,220,238,260,274,269,271,270,296,241,239,235,224,244,238,211,215,242,239,245,222,242,201,224,232,239,231,243,257,220,237,233,225,258,233,254,274,253,235,239,278,248,269,272,279,256,284,X
2016,Berlin,662,708,726,709,728,751,673,731,760,682,752,710,678,672,675,619,616,630,626,609,566,609,558,595,620,588,576,580,599,607,572,571,633,623,608,596,605,559,646,648,643,697,646,715,613,664,661,743,670,667,699,780,X
2016,Brandenburg,665,638,649,616,621,659,629,672,648,632,683,654,597,639,572,544,590,562,616,570,583,597,525,534,583,557,523,533,514,563,542,538,552,557,562,533,559,529,546,572,588,580,546,550,607,563,567,613,627,642,635,637,X
2016,Mecklenburg-Vorpommern,487,461,415,434,439,402,441,434,399,416,405,417,428,389,419,371,382,367,387,367,368,396,347,333,389,341,380,382,379,342,332,349,349,385,368,371,366,358,365,377,385,414,404,387,352,403,374,403,409,420,430,413,X
2016,Sachsen,1034,1059,1123,1166,1114,1097,1053,1104,1087,1098,1084,1082,1079,1067,1045,991,985,1005,1014,970,963,905,890,898,989,944,948,947,971,1040,886,918,899,978,978,954,975,895,970,989,981,961,1065,993,1079,1084,1037,1030,1118,1158,1137,1219,X
2016,Sachsen-Anhalt,658,650,616,601,635,601,627,700,672,653,676,703,655,627,599,584,627,604,659,565,598,572,509,520,640,542,566,578,603,599,554,498,524,598,580,563,551,512,574,548,578,603,564,552,607,628,598,651,603,629,680,661,X
2016,Thüringen,568,551,593,624,617,546,629,611,563,629,604,550,549,575,536,503,518,549,503,522,507,555,482,483,533,495,477,502,470,503,449,462,501,533,450,526,516,509,504,510,511,589,521,571,550,541,579,614,588,599,618,603,X
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment