-
4 individual plotcards
Each plotcard lässt can be configured separately (Scatter, Line, Bar, Heatmap, Histogram, Box- and Violinplot, and Choropleth-Map).
Options for each plot will be generated in the sidepannel after plot selected. -
Save & Load Presets
Save the complete Dashboard-Configuration and reload it at a later time.
The Gapminder dataset originates from the field of international development and social research and contains country-level time series data (1960–2023) on life expectancy, population, and gross domestic product per capita. The data are freely available and can be stored locally as CSV files (approximate size: 1.6 MB). The dataset is complete, comprising 41,440 entries and containing no missing values, making it directly suitable for analysis and visualization.
https://www.gapminder.org/data/
This project can be set up using either uv, a modern, fast Python package manager, or the traditional requirements.txt method.
uv is an extremely fast Python package and project manager, written in Rust. It handles dependency management and virtual environments seamlessly. Steps:
pip install uvuv venv
uv syncuv venv creates a virtual environment for the project.
uv sync installs all dependencies specified in your project configuration (e.g., pyproject.toml or requirements.txt)
On Unix/macOS:
source .venv/bin/activateOn Windows:
.venv\Scripts\activateIf you prefer the classic approach:
python -m venv .venvOn Unix/macOS:
source .venv/bin/activateOn Windows:
.venv\Scripts\activate.ps1pip install -r requirements.txtStart Dashboard with app.py
Modifications can be made in settings.py.
Open localhost in your browser.
