πŸ“½οΈ Stage 4 Β· The Data Toolkit Briefing

~10 minutes Β· revealjs presentation from a .qmd

πŸ—ΊοΈ The quest so far

We started with a .qmd file and a story.

We explored data β€” distributions, correlations, comparisons by major.

We fitted a model, evaluated it, and checked the diagnostics.

All of it lives in one file. All of it re-runs with one command.

Why this workflow changes things

Before

  • Analyse in R
  • Copy tables into Word
  • Rebuild charts in PowerPoint
  • Update manually when data changes
  • Hope nothing drifted

After

  • Write one .qmd
  • Render to report
  • Render to slides ← you are here
  • Render to website
  • Update once, everywhere

The five quest stages β€” complete

# Stage Skill unlocked
1 🧭 Demo Guide YAML · chunks · inline R
2 πŸ” EDA Distributions Β· correlations Β· box plots
3 πŸ”¬ Tidymodels Model Β· metrics Β· diagnostics
4 πŸ“½οΈ Slides revealjs Β· columns Β· fragments
5 πŸ† Final Chamber All fragments β†’ Golden Toolkit

A live code slide

library(tidyverse)
read_csv("data/treasure_hunt.csv", show_col_types = FALSE) |>
  group_by(major) |>
  summarise(avg = round(mean(final_treasure), 1)) |>
  arrange(desc(avg))
# A tibble: 5 Γ— 2
  major        avg
  <chr>      <dbl>
1 OMIS        94  
2 Marketing   83.2
3 Management  77.6
4 Accounting  76.8
5 Finance     71.8

The code ran inside the slide. No copy-paste. No drift.
Same code. Same data. Same model. Different output format.

Revealjs features worth knowing

Navigation

  • Space β€” next slide
  • ← β†’ β€” step through
  • F β€” fullscreen
  • S β€” speaker notes

Quarto syntax

  • .fragment β€” progressive reveal
  • columns β€” side-by-side layout
  • background-color β€” slide background
  • theme: β€” one word reskins everything

Themes you can swap instantly

Change one word in the YAML β†’ the whole deck reskins:

simple Β· sky Β· moon Β· night Β· serif Β· blood Β· white Β· league

Try it live

Change theme: simple to theme: moon and render.
Takes under 30 seconds.

What slide would you add?

Which major at NIU has the most to gain from data literacy?

What is one finding from the EDA you would want a hiring manager to see?

What would your slide look like?

Coding adventure gif