close

CBSE Class 10 AI – Unit 4: Statistical Data

June 29, 2025 · By @mritxperts

A. Introduction to Statistical Data

Statistics is a branch of mathematics that helps us collect, organize, analyze, and interpret data.

In Artificial Intelligence, statistical data is used to:

Before building any AI model, we need to study the data using basic statistics.


B. Types of Data

1. Qualitative Data (Categorical)

2. Quantitative Data (Numerical)


C. Measures of Central Tendency

These are values that represent the center or average of a dataset.

1. Mean (Average)

Formula:
Mean=Sum of all valuesNumber of values\text{Mean} = \frac{\text{Sum of all values}}{\text{Number of values}}Mean=Number of valuesSum of all values​

Example:
Marks = 40, 50, 60
Mean = (40 + 50 + 60) / 3 = 150 / 3 = 50


2. Median

Example (Odd):
Marks = 20, 30, 40 → Median = 30

Example (Even):
Marks = 20, 30, 40, 50 → Median = (30 + 40)/2 = 35


3. Mode

Example:
Marks = 20, 30, 30, 40 → Mode = 30


D. Measures of Dispersion (Spread of Data)

These measures tell us how spread out or varied the data is.

1. Range

Formula:
Range=Maximum value−Minimum value\text{Range} = \text{Maximum value} – \text{Minimum value}Range=Maximum value−Minimum value

Example:
Marks = 20, 30, 40
Range = 40 – 20 = 20


2. Standard Deviation (for higher understanding, optional for basics)


E. Data Visualization Techniques

Data can be better understood using charts and graphs.

1. Bar Graph

2. Histogram

3. Pie Chart

4. Line Graph


F. Using Python Libraries to Analyze Data (Overview Only)

Example using Python (For practical understanding):

pythonCopyEditimport numpy as np

marks = [40, 50, 60]
mean = np.mean(marks)
median = np.median(marks)
print("Mean:", mean)
print("Median:", median)

G. Real-Life Examples

ScenarioStatistical Method Used
Checking average marks in a classMean
Finding the most common favorite fruitMode
Analyzing the difference in heightsRange / Standard Deviation
Showing number of boys vs. girlsBar Graph

H. Activity Suggestion for Students

Ask students to collect data of their classmates such as:

Then:

Discuss:


I. Keywords to Remember

TermMeaning
MeanThe average value of data
MedianThe middle value in ordered data
ModeThe most frequently occurring value
RangeThe difference between the highest and lowest values
Qualitative DataData in categories or labels
Quantitative DataData in numbers or measurable quantities
Bar GraphChart to represent categories
HistogramChart to show frequency distribution

J. Summary of the Unit