Simple Data Explorer

Rene Persau

2025-02-27

Slide 1: Introduction

Slide 2: Key Features

Slide 3: How It Works

  1. User selects a dataset from a dropdown menu.
  2. The app displays a list of available variables.
  3. A histogram or scatter plot is generated dynamically.
  4. Changes reflect instantly using Shiny’s reactivity.

Slide 4: Sample Code (Shiny)

Example code:

output\(dataPlot <- renderPlot({ df <- get(input\)dataset, “package:datasets”) ggplot(df, aes_string(x = input$variable)) + geom_histogram(fill = “blue”, bins = 30) + theme_minimal() })

Visualization: