Lesson 1: Organizing Raw Data into Arrays and Frequency
Distributions
Intro
Hello, everyone, and welcome back to our Statistics course! Imagine receiving a chaotic list of num-
bers—maybe survey results, daily sales figures, or exam scores. It’s like trying to read a book with all
the words jumbled up. But don’t worry—today, we’ll learn how to bring order to the chaos by organizing
data into arrays and frequency distributions. Let’s dive in!
Content
Raw Data: The Starting Point
Data collection is often messy. You might receive numbers in no particular order, making it hard to see
patterns or trends. For example:
42, 35, 40, 38, 36, 35, 39, 42, 40, 41
It’s just a bunch of numbers, right? That’s where organization methods like arrays and frequency
distributions come in to save the day.
Formally, raw data is unprocessed information collected directly from surveys, experiments, or
observations. It is often unordered and unstructured, making it difficult to analyze or interpret.
Arrays: Turning Chaos into Order
Let’s start small. An array is a simple way to organize data in ascending or descending order. This not
only makes the dataset easier to read but also helps you identify patterns and outliers.
Example: For the raw data:
42, 35, 40, 38, 36, 35, 39, 42, 40, 41
The array in ascending order is:
35, 35, 36, 38, 39, 40, 40, 41, 42, 42
Formally, an array is an ordered arrangement of raw data, typically organized in ascending or
descending order. It is the first step in preparing data for further analysis.
Frequency Distributions: Finding Patterns
Sometimes, even arrays aren’t enough, especially when dealing with large datasets. This is where fre-
quency distributions come into play. They group data into intervals and show how often each interval
occurs, making patterns and trends easy to spot.
Imagine dividing the dataset into manageable chunks, like sorting books into categories. That’s
exactly what a frequency distribution does for data.
Formally, a frequency distribution is a statistical table that organizes data into mutually exclusive
classes (intervals) and shows the frequency (count) of observations in each class.
1
Steps to Create a Frequency Distribution
1. Decide the Number of Classes: Use Sturges’ Rule to estimate the number of intervals:
k = 1 + 3.322 log n
Where n is the number of data points.
2. Calculate the Range: The range is the difference between the maximum and minimum values:
Range = Maximum Value − Minimum Value
3. Determine the Class Width: Divide the range by the number of classes:
Range
w=
k
Always round up w to the nearest whole number for simplicity.
4. Create Class Intervals: Start from the minimum value and add the class width to define intervals.
5. Tally the Data: Count how many data points fall into each class.
6. Create the Frequency Table: Display the intervals and their frequencies in a clear table.
Example: Let’s work with the dataset:
35, 35, 36, 38, 39, 40, 40, 41, 42, 42
• Number of data points (n): 10.
• Using Sturges’ Rule:
k = 1 + 3.322 log 10 ≈ 4
• Range:
Range = 42 − 35 = 7
• Class width:
7
w= = 1.75 (round up to 2).
4
Frequency Table:
Class Interval Frequency
35 − 36 3
37 − 38 1
39 − 40 3
41 − 42 3
Real-Life Applications
• Retail: Companies use frequency distributions to analyze sales trends.
• Education: Schools summarize test scores to identify performance patterns.
• Healthcare: Hospitals monitor patient statistics, such as daily admissions, using frequency tables.
Outro
And there you have it! Arrays and frequency distributions are the first steps in transforming raw data into
meaningful insights. Next time, we’ll refine the process by exploring class intervals, limits, boundaries,
and marks. See you soon!