Stem-and-Leaf Diagrams

A stem-and-leaf diagram sorts a list of numbers while keeping every value. Each number is split into a stem (the leading digit or digits) and a leaf (the last digit). For example 23 splits into stem 2 and leaf 3. The leaves are written in order next to their stem, so numbers sharing a stem line up in one row.

Take the data 12, 15, 21, 23, 23, 34, 38. The tens digit is the stem (1, 2, 3) and the units digit is the leaf. Writing each leaf in order gives:

StemLeaf
12  5
21  3  3
34  8

Every diagram must include a key so the reader knows the place value of the digits:

Key: 2 \mid 3 means 23.

Reading along the rows recovers the sorted data exactly: 12, 15, 21, 23, 23, 34, 38 — nothing is lost.