Study Guide

Graphical Representations for One Quantitative Variable

AP StatisticsΒ· 12 min read

1. Dotplots and Stemplots for Small Datasetsβ˜…β˜…β˜†β˜†β˜†β± 3 min

Dotplots and stemplots are the only two displays that preserve individual data point values, making them ideal for small datasets with fewer than 100 observations. They allow you to easily spot clusters, gaps, and individual outliers that are hidden in aggregated displays like histograms.

πŸ“˜ Definition

Stemplot

Stem∣LeafStem | Leaf

A display that splits each data value into a leading 'stem' digit and trailing 'leaf' digit, arranged vertically in ascending order

Example:

For values 12, 15, 21, the stemplot reads 1 | 2 5, 2 | 1

πŸ“ Worked Example

Construct a stemplot for the following 12 student test scores: 62, 67, 71, 74, 75, 78, 82, 83, 83, 89, 91, 95

  1. 1

    Identify stems as the tens digit of each score, ranging from 6 to 9

  2. 2

    List all ones-digit leaves in ascending order for each stem

  3. 3

    Add a clear key to explain the stem and leaf mapping

  4. 4
    6∣277∣14588∣23399∣15Key:6∣2=62points6 | 2 7 7 | 1 4 5 8 8 | 2 3 3 9 9 | 1 5 Key: 6 | 2 = 62 points

2. Histograms for Large Datasetsβ˜…β˜…β˜…β˜†β˜†β± 3 min

Histograms are the most commonly tested graphical display for large datasets, where showing individual points is impractical. Unlike bar charts for categorical data, histogram bars are adjacent to each other to reflect the continuous nature of quantitative data.

πŸ“˜ Definition

Histogram

A graphical display that groups continuous quantitative values into ordered, non-overlapping bins, with bar height representing frequency or relative frequency of observations in each bin

πŸ“ Worked Example

Construct a histogram for 50 student heights grouped into 5 equal bins: 140-150cm, 150-160cm, 160-170cm, 170-180cm, 180-190cm, with frequencies 4, 12, 20, 11, 3

  1. 1

    Draw a horizontal axis labeled Height (cm) with clear bin boundaries

  2. 2

    Draw a vertical axis labeled Frequency ranging from 0 to 20

  3. 3

    Draw adjacent bars for each bin with height matching the corresponding frequency

  4. 4

    Confirm no gaps exist between bars, and all axes are fully labeled

3. Boxplots and the 5-Number Summaryβ˜…β˜…β˜…β˜†β˜†β± 3 min

Boxplots (also called box-and-whisker plots) are ideal for comparing multiple distributions side-by-side, as they condense the full dataset down to the 5-number summary: minimum, Q1, median, Q3, maximum. They are the only standard display that explicitly marks outliers separately from the rest of the data.

Outlier threshold =[Q1βˆ’1.5Γ—IQR,Q3+1.5Γ—IQR]\text{Outlier threshold } = [Q_1 - 1.5 \times IQR, Q_3 + 1.5 \times IQR]
πŸ“ Worked Example

Draw a boxplot for a dataset with 5-number summary [22, 37, 49, 62, 88], IQR = 25, and a value of 98 that falls above the upper outlier threshold

  1. 1

    Draw a number line spanning from 20 to 100

  2. 2

    Draw a box spanning from Q1=37 to Q3=62, with a vertical line at the median 49

  3. 3

    Draw a left whisker from Q1 to the minimum non-outlier value 22

  4. 4

    Draw a right whisker from Q3 to the maximum non-outlier value 88, and mark the outlier 98 as a separate dot

4. Selecting the Correct Graphβ˜…β˜…β˜…β˜…β˜†β± 3 min

Methods compared

Use this reference to pick the optimal display for any exam scenario:

Dotplot

Best for n < 50, when you need to show individual points

+ Pros: No data aggregation, easy to spot clusters

βˆ’ Cons: Cluttered for large datasets

Stemplot

Best for n < 100, when you need to preserve exact values

+ Pros: No data aggregation, no special software required

βˆ’ Cons: Impractical for very large datasets

Histogram

Best for n > 50, when you need to visualize overall distribution shape

+ Pros: Works for arbitrarily large datasets

βˆ’ Cons: Hides individual data points, sensitive to bin width

Boxplot

Best for comparing 3+ distributions side-by-side

+ Pros: Compact, explicitly marks outliers

βˆ’ Cons: Does not show multi-modality or gaps

βœ“ Quick check

Test your understanding of graph selection:

  1. Which graph is best to compare exam score distributions for 5 different class periods?

    • A) Dotplot

    • B) Boxplot

    • C) Stemplot

    • D) Individual histogram for each class

    Reveal answer
    B β€”

    Side-by-side boxplots are the most compact and clear way to compare 5+ distributions.

5. Common Pitfalls

Wrong move:

Using unequal bin widths in a histogram without adjusting frequency counts

Why:

It distorts relative group sizes, making distribution shape appear incorrectly skewed

Correct move:

Always use equal bin widths unless explicitly justified, and label all bin boundaries clearly

Wrong move:

Forgetting to include a key for a stemplot

Why:

AP graders cannot confirm you correctly separated stems and leaves, leading to automatic point deductions

Correct move:

Add a 1-sentence key for every stemplot you construct, no exceptions

Wrong move:

Describing distribution shape as symmetric or skewed using only a boxplot

Why:

Boxplots do not show gaps, clusters, or multi-modality that define true distribution shape

Correct move:

Only describe shape from a dotplot, stemplot, or histogram, and note that boxplots cannot confirm modality

Wrong move:

Using a histogram to display unordered categorical data

Why:

Histogram bars imply continuous ordered bins that do not exist for unordered categorical groups

Correct move:

Reserve histograms exclusively for quantitative data, use bar charts for all categorical data

Wrong move:

Extending boxplot whiskers all the way to maximum and minimum values even when outliers exist

Why:

This hides outliers, violating AP rubric requirements for explicit outlier marking

Correct move:

Always mark outliers as separate individual points, and draw whiskers only to the farthest non-outlier value

6. Quick Reference Cheatsheet

Graph Type

Ideal Dataset Size

Shows Individual Points?

Best Use Case

Dotplot

n < 50

Yes

Spot clusters and small gaps

Stemplot

n < 100

Yes

Preserve exact data values

Histogram

n > 50

No

Visualize overall distribution shape

Boxplot

Any size

No

Compare 3+ distributions side-by-side

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· Paper 1

    Describe histogram shape and outliers

  • 2022 Β· Paper 2

    Construct boxplot from given dataset

  • 2021 Β· Paper 1

    Compare histogram and dotplot outputs

What's Next

Mastering these graphical displays is the foundation for all inferential statistics work in AP Stats, as you will regularly need to justify distribution shape and normality assumptions using these plots before running hypothesis tests or calculating confidence intervals. You will next apply these interpretation skills to compare distributions across two groups, a common 3-5 point FRQ question that appears on nearly every AP Stats exam. You will also learn to spot misleading visualizations that are frequently tested in the multiple choice section, to avoid falling for common distractor options that incorrectly represent quantitative data. Confirm you can describe the four key features of any distribution (shape, center, spread, outliers) from any of these graphs before moving forward.