File:Besucherzahlen Disneyland Paris.svg
Summary
Description |
Deutsch: Das Diagramm zeigt die Entwicklung der Besucherzahlen des Disneyland Parks Paris und der Walt Disney Studios Paris von 1992 bis 2022. |
Date | |
Source | Own work |
Author | DerIch27 |
Reproduzieren
Das Bild wurde mit folgendem Python-Skript erzeugt. Das Aktualisieren der Daten und Überschreiben des Bildes ist ausdrücklich erwünscht.
import matplotlib.pyplot as plt
import pandas as pd
data = pd.read_csv('data.csv')
plt.title('Besucherzahlen Disneyland Paris', fontsize=16)
plt.ylabel('Besucher in Millionen pro Jahr', fontsize=14)
plt.plot(data.get('year'), data.get('all'), label='Gesamt')
plt.plot(data.get('year'), data.get('park'), label='Disneyland Park')
plt.plot(data.get('year'), data.get('studios'), label='Walt Disney Studios')
plt.legend(loc='lower left', fontsize=12)
plt.yticks(fontsize=12)
plt.xticks(fontsize=12)
plt.grid()
plt.tight_layout()
plt.savefig('Besucherzahlen Disneyland Paris.svg')
Datengrundlage
Die Daten ab 2006 stammen aus dem Theme Index and Museum Index: The Global Attractions Attendance Report des jeweiligen Jahres, herrausgegeben von der Themed Entertainment Association (TEA) und AECOM. Die älteren Daten stammen aus dieser Version der deutschen Wikipedia, sind aber leider nicht mit belegt, stimmen aber für 2006 mit den Daten des Theme Index überein.
year,all,park,studios
1992,9.8,,
1993,10.5,,
1994,10.5,,
1995,10.1,,
1996,10.9,,
1997,10.5,,
1998,10.9,,
1999,11.3,,
2000,11.9,,
2001,12.3,,
2002,9.2,,
2003,10.3,,
2004,11.3,,
2005,11.0,,
2006,12.8,10.6,2.2
2007,14.5,12,2.5
2008,15.3,12.688,2.612
2009,15.395,12.74,2.655
2010,15,10.5,4.5
2011,15.7,10.99,4.71
2012,16,11.2,4.8
2013,14.9,10.43,4.47
2014,14.2,9.94,4.26
2015,14.84,9.79,5.05
2016,13.37,8.4,4.97
2017,14.86,9.66,5.2
2018,15.141,9.843,5.298
2019,14.99,9.745,5.245
2020,4.03,2.62,1.41
2021,5.384,3.5,1.884
2022,15.27,9.93,5.34
2023,16.1,10.4,5.7
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
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.