Agnieszka Chojecka
"2026-07-11"
Interactive Exploration of the Palmer Penguins Dataset
Developed using Shiny, Plotly and RStudio
The Palmer Penguins dataset is widely used for learning data analysis.
Penguin Explorer transforms a static dataset into an interactive application.
Users can:
The application uses Shiny reactive programming.
User inputs:
The server performs calculations and updates:
The application provides immediate results without requiring programming knowledge.
Example visualization generated in R:
library(palmerpenguins)
hist(
penguins$body_mass_g,
main = "Distribution of Penguin Body Mass",
xlab = "Body Mass (g)",
col = "steelblue"
)
Penguin Explorer demonstrates how Shiny can transform a static dataset into an interactive analytical application.
Benefits:
Easy to use Interactive filtering Instant statistics Interactive visualization Download filtered data No programming knowledge required
This project shows how R can be used to create accessible data products.