Thomas Lizzi
2025-11-24
Visualizing Event Concentration Across Europe
The Challenge: Stakeholders and event organizers often have lists of hundreds of trade fairs stored in Excel spreadsheets. It is difficult to:
The Solution: The European Trade Fairs Monitor is a Shiny application that transforms raw data into an interactive, geographical insight tool.
The User Interface (UI) is designed for simplicity:
1. The Sidebar (Control Panel):
2. The Main Panel:
To prevent map clutter (thousands of dots on top of each other), the app performs Smart Aggregation:
City and Country.The application utilizes a dataset of European trade fairs. The data is pre-processed to geocode city names into coordinates.
Here is a live sample of the data structure:
# Embedded R Code: Generating a sample view of the data structure
# This code runs when the slides are compiled
sample_data <- data.frame(
Year = c(2024, 2024, 2025),
City = c("Milan", "Paris", "Berlin"),
Event = c("Salone del Mobile", "Fashion Week", "IFA Tech"),
Lat = c(45.4642, 48.8566, 52.5200)
)
print(sample_data)
Year City Event Lat
1 2024 Milan Salone del Mobile 45.4642
2 2024 Paris Fashion Week 48.8566
3 2025 Berlin IFA Tech 52.5200