1. Find the mode of a simple dataset
Problem
We write out all the values from the dataset.
Tally the frequency of each distinct value by counting how many times each appears.
The value appears 3 times, more often than any other value in the dataset.
Answer:
We count how many times each number appears, then select the one that appears most frequently. This is the definition of mode.