Statistics is where R stops
being a calculator and starts arguing.

Every test on this path answers one nervous question: could this just be luck? You will learn to put a number on that doubt, and to defend it.

probability → inference → regression → Bayesian, then a certificate track if you want to prove it.

t-test.R
# did group B really score higher, or did we get lucky?
t.test(scoreB, scoreA, alternative = "greater")
B - A = 1.8
Output two distributions, drawn live
A B
R
A note from the desk

Most people meet statistics as a wall of formulas and a table of critical values to look things up in. That order is backwards. You should feel the idea first, by simulating it, before a single Greek letter shows up. So on this path we draw the coin a thousand times before we name the distribution, and we watch a p-value move before we ever defend one in writing.

Take it slowly and in order. The tests are easy. Knowing which one to reach for, and what its answer is honestly allowed to mean, is the whole job.

r-statistics.co statistician · teaching applied statistics in R since 2016
01

The order I would teach it in

seven posts · about a week

Not the table of contents. These seven, in exactly this sequence, are the spine of the whole path. Each one only makes sense because the one before it landed. Read them in order and the rest of the path falls into place.

1

Probability, simulation-first →

Before any formula. We roll the dice ten thousand times in R and let probability emerge from the counting. Get this and nothing later feels like magic.

Probability start here 14 min read
2

The Central Limit Theorem →

The single most useful fact in the subject, and the reason a bell curve keeps turning up uninvited. Average enough of anything and it goes normal. Watch it happen.

Probability the engine room 16 min read
3

Hypothesis Testing →

The grammar of every test that follows: null, alternative, p-value, decision. Learn it once here, carefully, and you have learned half of applied statistics.

Inference the backbone 18 min read
4

t-Tests →

Your first real test, and the one in the demo above. Two groups, one honest question: is the difference more than noise? Everything heavier is a variation on this move.

Inference your first test 13 min read
5

Confidence Intervals →

The grown-up answer. A p-value says maybe not luck; an interval says how big the effect plausibly is. Report these, not bare p-values, and people trust you more.

Inference say it like a pro 12 min read
6

Linear Regression →

Where it all comes together: a line that is itself a hypothesis test, with a slope you can defend. From here, almost every model you will ever fit is a relative of this one.

Regression the payoff 22 min read
7

Bayes' Theorem →

The other way to argue from data, and worth meeting early even if you stay frequentist. It reframes everything above as updating a belief. Optional, but it makes you sharper.

Bayesian a second lens 15 min read
A p-value is not a verdict. It is how surprised you are allowed to be if nothing is really going on.
what the t-Tests post above will teach you to mean by it
02

The full path, by family

Once the seven above have clicked, here is the rest, grouped the way the subject actually divides. Browse by the question on your desk. Every page runs in the browser.

Probability

11

The language of chance, built from simulations up.

+ 4 more, incl. LLN vs CLT

Inference and Testing

28

Estimating, deciding, and knowing which test to reach for.

+ 20 more, incl. chi-square, multiple testing

Regression

21

Lines, curves, and odds, all defended with the same machinery.

+ 13 more, incl. robust, quantile, interactions

ANOVA and Design

11

Comparing many groups, and designing the experiment first.

+ 4 more, incl. factorial, MANOVA, mixed

Multivariate

12

Many columns at once: reduce them, group them, see them.

+ 5 more, incl. correspondence, Hotelling's

Bayesian

19

The other lens: priors, posteriors, and honest uncertainty.

+ 11 more, incl. HMC, priors, model comparison
03

By the end, you can

  • Pick the right test for a question without guessing or googling.
  • Read a p-value out loud and say what it does and does not mean.
  • Fit and defend a regression, assumptions checked, slope interpreted.
  • Report a confidence interval and effect size, not a bare significance star.
  • Compare many groups with ANOVA and follow up honestly.
  • Know when a Bayesian answer fits the question better than a frequentist one.
Certification track

Finish the Statistics track, earn a credential
that says you can actually do this.

Every tutorial on this path stays free. Pro is for the proof: graded mastery quizzes on the path above, a verifiable certificate with your name on it, and a public link a recruiter can click. You earn it by passing the quizzes.

See how certification works free to start · cancel anytime
Sample
Certificate of Mastery
Statistics with R
Awarded to Your Name
Mastery quizzes passed, full path completed
Each certificate carries a verifiable ID and link
Sample preview, not a real credential

Start with the dice. Roll them ten thousand times, and let the rest of statistics follow.

Begin with Probability