Durchsuchen nach
Schlagwort: Pandas

Regensummen weltweit

Regensummen weltweit

Um mal so ein Gefühl für die weltweiten Regensummen zu erhalten, auch gut für eine Auswanderung, kann man sich diese Grafik anschauen. Die Werte kommen von der Seite weatherspark.com, die zusammengeführt habe. Auch dieses Thema kommt in einem kleinen Kapitel in einem baldigen Buch erwähnt. Hier schon einmal die Grafik, die aus Platzgründen nicht ins Buch schafft. Um das zu stellen, braucht man natürlich Zeit und ein gutes Script, um das erzeugen zu lassen. Hier das Script für solches Diagramm.

Análisis de los precios al consumidor en Chile (2026): Un enfoque con Python

Análisis de los precios al consumidor en Chile (2026): Un enfoque con Python

Introducción: Para encontrar un ejemplo de la vida real, he analizado un archivo CSV del gobierno chileno sobre los precios oficiales al consumidor. Los datos provienen del portal datos.gob.cl. Para nuestro script, utilizamos el lenguaje Python y la biblioteca Pandas. En mi caso, también utilizo Matplotlib para la visualización. La visualización: En este caso, no utilizo un gráfico de barras típico. He creado un diagrama de rangos (también conocido como Dumbbell Plot). Al ejecutar el script, el sistema pregunta por…

Weiterlesen Weiterlesen

Read out the Gas level from a CSV file with Python Pandas

Read out the Gas level from a CSV file with Python Pandas

The fill level of Germany’s gas storage facilities is currently very low. Too low for the situation at the end of January 2026. These levels were actually expected to be reached by the end of March. Unfortunately, the German government’s website is very slow to update the fill levels of our gas storage facilities, even though they should be updated daily. I suspect the fax machines are malfunctioning again, or too many errors are being made between the tablet and…

Weiterlesen Weiterlesen

Python Pandas Query greater than

Python Pandas Query greater than

If you have a script with Python Pandas and you want to have a query for a value that is in my case greater than 40, then you have to use this kind of command. Make sure that you have installed Python and Pandas on your computer. The CSV file is from Google Trends, and I have asked Google Trends how many search queries are there for Python Pandas all over the world. At the moment, I’m building a tool…

Weiterlesen Weiterlesen

Python: Displaying data at specific times with Matplotlib

Python: Displaying data at specific times with Matplotlib

With this simple script, you can display simple data in a Python dictionary using a bar chart. Installation process To do this, you need to install Python and then the Matplotlib module. For Python, go to the official Python.org website and install the latest version. Once that is complete, install the Matplotlib module in the command line or terminal, depending on which operating system you are using. pip install matplotlib Any necessary library files will then be downloaded and installed….

Weiterlesen Weiterlesen