Rows of scouting data are useless until you summarize them. Two kinds of numbers do almost all the work: measures of center (where a team's typical performance sits) and measures of spread (how much it bounces around).
Measures of Center
Mean (average): Add every value and divide by the count. For game pieces [4, 5, 6], the mean is (4+5+6)/3 = 5. In a sheet, =AVERAGE(C2:C50). The mean uses every data point, which makes it informative but also easy to skew.
Median: Sort the values and take the middle one. For [4, 5, 6] the median is 5. With an even count like [4, 5, 6, 9], average the two middle values: (5+6)/2 = 5.5. In a sheet, =MEDIAN(C2:C50).
Why the Median Resists Outliers
An outlier is a value far from the rest. Watch what one bad match does. Say a team scores [5, 6, 5, 6, 0] — that 0 was a dead battery, not their real ability.
- Mean =
(5+6+5+6+0)/5 = 4.4 - Median = sort to
[0, 5, 5, 6, 6], middle value = 5
The single 0 dragged the mean down more than half a point; the median barely moved. The median is resistant because it only cares about the middle value's position, not how extreme the flukes are. The mean is not — every value pulls on it. When a team's data is skewed by a breakdown or a no-show, the median tells the more honest story. When their matches are fairly even, the mean captures more.
Measures of Spread
Two teams can share an average and play nothing alike. Spread is how you measure consistency — and at FRC, a partner you can count on often beats a partner who might explode.
- Range = max minus min (
=MAX(...)-MIN(...)). Easy, but one outlier blows it up. - Standard deviation measures how far values typically fall from the mean. Small means tightly clustered and reliable; large means boom-or-bust. In a sheet,
=STDEV(C2:C50).
A Worked Example
Two teams, five matches each, both averaging 6 game pieces:
- Team A:
[6, 6, 5, 7, 6]— mean 6, range 2, low standard deviation. Rock-solid. - Team B:
[1, 11, 2, 10, 6]— mean 6, range 10, high standard deviation. A coin flip.
On average alone they look identical. Spread reveals Team A is a dependable second pick and Team B is a gamble you only take if you need a ceiling that high. In an elimination bracket where one dead match ends your day, that difference decides who you call.
So always report center and spread together. An average without spread is half the story — and the half that gets alliances knocked out early.
Key takeaways
- The mean uses every value but is pulled by outliers; the median is the middle value and resists them.
- Use the median when data is skewed or has extreme values (like a dead-battery zero); use the mean when data is fairly even.
- Range (max minus min) is quick but fragile; standard deviation measures typical distance from the mean and captures consistency.
- Two teams can share an average while differing wildly in spread, so always report center and spread together.
- In spreadsheets: =AVERAGE, =MEDIAN, =MAX-MIN for range, and =STDEV for standard deviation.
Keep going
Take the quiz · +10 XP with an accountMore in Data Foundations: Spreadsheets and Statistics
Sources & corrections
This lesson is AI-assisted: drafted from primary sources, then reviewed and edited by hand. Errors still get through. When one is reported we fix it and write down what changed — publicly, in the corrections log.
Sources and further reading
- Summarizing quantitative data (Khan Academy)khanacademy.org
- Range, variance & standard deviation as measures of dispersion (Khan Academy)khanacademy.org
- MEDIAN function (Google Docs Editors Help)support.google.com
Read next
Articles on this, for competition day
The lesson covers how it works. These cover what to do when it breaks.
- 6 min read
FRC Scouting Sheet Template: Printable Paper Sheet + Google Form to Sheets Setup
A ready-to-print FRC scouting sheet plus a Google Form to Sheets setup that auto-averages one row per scout into per-team stats, with a 2026 REBUILT note.
Read - 20 min read
Playing Defense in FRC: Legal Defense, Positioning, and Picklist Value
Playing defense in FRC done right: when it pays off, legal vs. illegal defense and pinning rules, driving technique, counter-defense, and picklist value.
Read - 18 min read
OPR, DPR & CCWM in FRC: What Every Scouting Stat Actually Means
OPR, DPR, and CCWM explained for FRC scouts: how each stat is computed with least squares, what it really measures, where it misleads, and how EPA compares.
Read
Lesson quiz
RequiredAll 3 right completes the lesson. Miss one and only that question comes back — anything you already answered correctly stays banked.
0 of 3 answered
01.A team scores [5, 6, 5, 6, 0], where the 0 came from a dead battery. Which statement is true?
02.Two teams both average 6 game pieces. Team A scores [6,6,5,7,6] and Team B scores [1,11,2,10,6]. What does the spread tell you?
03.Which measure of center is described as 'resistant' because outliers barely affect it?
Answer every question to submit.
All 32 lessons in Scouting & Strategy
- Not started:Project 1: Configure a QRScout Form for REEFSCAPE
- Not started:Project 2: Compute OPR by Hand, Then in a Spreadsheet
- Not started:Project 3: Pull Live Data with the TBA and Statbotics APIs
- Not started:Project 4: Build an EPA-Component Robot Ranking Sheet
- Not started:Project 5: Assemble a One-Page Pre-Match Prep Sheet