Teaching Materials
Statistics · Methodology · Quantitative Research
A collection of presentations and teaching tools for statistics and research methods, built with Manim and manim-slides.
| Folder | Topic | Description |
|---|---|---|
pValue/ |
What is a p-value? | An animated, plain-language walkthrough — coin story, falling-dots simulation, common misconceptions |
Each presentation is pre-rendered. You only need manim-slides to present.
1. Install the presenter
pip install "manim-slides[pyqt6]"2. Navigate to the folder and present
cd pValue
manim-slides present PValueUse → / Space to advance, ← / Backspace to go back, Escape to quit.
If you want to modify a presentation and re-render it:
Prerequisites
cd pValue
# Create and activate a virtual environment
python -m venv .venv
.venv\Scripts\activate # Windows
# source .venv/bin/activate # macOS / Linux
# Install dependencies
pip install manim "manim-slides[pyqt6]"
# Render, then present
manim-slides render pvalue_slides.py PValue
manim-slides present PValueNote: The first render is slow because LaTeX compiles every maths expression from scratch. Subsequent renders reuse the cache and are much faster.
| Tool | Role |
|---|---|
| Manim Community | Animation engine |
| manim-slides | Interactive presentation layer |
| TeX Live | LaTeX → SVG for equations |
| ffmpeg | Video encoding |