2025-10-30

Slide 1 — Title

My Simple Predictor
A tiny Shiny demo: input → calculation → reactive output.

Slide 2 — Problem

Many learners want a quick, interactive way to see how numeric inputs affect predictions. Target: students and beginners learning Shiny.

Slide 3 — Solution (runs an R expression)

Small R code runs when knitting the slides:

set.seed(42) summary(rnorm(50, mean = 10, sd = 2))

Slide 4 — Demo / How to run

  1. Visit the app: My Simple Predictor
  2. Enter your name, pick a number (1–100), and click Run.
  3. The app simulates 1000 random values, then shows a predicted mean, sd, and a histogram.

Slide 5 — Links & Contact

Summary

This presentation and the Shiny App demonstrate: - A simple interactive predictor built in R Shiny
- Reactive output responding to user input
- Deployed app + reproducible pitch meeting course requirements