Frequency trees are a visual way to represent data that is grouped into categories. They're particularly useful when you have a large dataset and need to quickly see the frequency of different values.
Understanding the Structure
A frequency tree consists of branches and nodes.
Example
Let's say we're looking at the favourite colours of 20 students:
Building the Tree
Start with the main branch: This could be labelled "Favourite Colour".
Add sub-branches: For each colour, create a sub-branch stemming from the main branch.
Label each sub-branch: Label each sub-branch with the corresponding colour.
Add nodes: At the end of each sub-branch, write the frequency of that colour (e.g., 5 for red).
Visual Representation:
Favourite Colour
/ | \ \
Red Blue Green Yellow
| | | |
5 7 3 5
Using Frequency Trees
Example Calculation:
Key Points