Data Analysis 2026 (Batch B)
- Description
- Curriculum
- Reviews
-
1Class One Text (INTRODUCTION TO DATA ANALYSIS)3 Hours
Data: a representation of information or material recorded and known or assumed as facts and used as a basis of reasoning, discussion or calculation represented especially in the form of numbers
-
2Excel Class OneVideo lesson
-
3Class Two Text (Formulae and Functions)2 Hours
Formula are users made (it is defined by a user’s without excel instructions) When a user uses any kind of logic to get an answer is called formula.
We clarified the difference between formulas and functions, highlighting how they're often used interchangeably in everyday usage.
-
4Excel Class TwoVideo lesson
-
5Class Two Quiz5 questions
-
6Class Three Text (Using Lookups)2 Hours
The term ‘Look up’ as used in the context, means to look up (search) from a list.
There are two main LOOKUP functions that can be used within Excel. These are:
HLOOKUP
VLOOKUP
XLOOKUP
-
7Excel Class ThreeVideo lesson
-
8Class Three Quiz5 questions
-
9WEEK 1 ASSIGNMENTAssignment
-
10Class Four Text (If Statement, Nested If and Functions for Data Cleaning)2 Hours
An IF statement in Excel is a logical function that tests a condition and returns one value if true and another value if false.
-
11Excel Class FourVideo lesson
-
12Class Four Quiz5 questions
-
13Class Five Text (Sort and Filters, Removing extra rows, Conditional formatting, removing duplicate)2 Hours
Sorts: Arrange data in a specific order (ascending, descending, alphabetical, etc.) to organize and analyze it.
Filters: Show only specific data that meets certain conditions, hiding the rest. This helps focus on relevant information
-
14Excel Class FiveVideo lesson
-
15Class Five Quiz5 questions
-
16Class Six Text: (Data Cleaning in Power Query Editor)2 Hours
Power Query Editor, also known as "Get & Transform" in some versions of Microsoft Excel, is a data analysis tool that allows users to efficiently import, transform, and combine data from various sources.
-
17Excel Class SixVideo lesson
-
18Class Six Quiz5 questions
-
19WEEK 2 ASSIGNMENTAssignment
-
20Class Seven Text: (-DATA MANIPULATION IN EXCEL)2 Hours
Pivot tables are a powerful tool for data manipulation.
Data Manipulation with Pivot Tables:
1. Summarize large datasets: Pivot tables help you summarize large datasets by grouping and aggregating data.
2. Analyze data from different angles: Pivot tables enable you to rotate and pivot your data to analyze it from different perspectives.
3. Create custom calculations: Pivot tables allow you to create custom calculations, such as calculated fields and measures.
-
21Excel Class SevenVideo lesson
-
22Class Seven Quiz5 questions
-
23Class Eight Text (Building Dashboard in Excel)2 Hours
BUILDING OF DASHBOARD AND SLICERS
A dashboard is a visual representation of data that's designed to provide an at-a-glance overview of key metrics. A dashboard can include a variety of visualizations, like charts, tables, and graphs.
It's a great way to get a quick overview of your data and identify areas that need attention. Dashboards are often used in business intelligence and data analytics applications.
-
24Excel Class EightVideo lesson
-
25Class Eight Quiz5 questions
-
26Class Night Text (More on Data manipulation and Dashboard)2 Hours
Metrics in a dashboard refer to the quantifiable measures used to track and analyze performance, progress, or trends. These metrics are often displayed in a visual format, such as charts, graphs, or tables, to provide insights and facilitate decision-making.
-
27Excel Class NineVideo lesson
-
28Class Nine Quiz5 questions
-
29WEEK 3 ASSIGNMENTAssignment
-
30Class Ten Text (More on Data Manipulation and Dashboard)2 Hours
A dashboard is a visual representation of data that's designed to provide an at-a-glance overview of key metrics. A dashboard can include a variety of visualizations, like charts, tables, and graphs.
-
31Excel Class TenVideo lesson
-
32Class Ten Quiz5 questions
-
33Class Eleven Text (Dashboard, Metric and Slicers)2 Hours
Metrics in a dashboard refer to the quantifiable measures used to track and analyze performance, progress, or trends. These metrics are often displayed in a visual format, such as charts, graphs, or tables, to provide insights and facilitate decision-making
-
34Excel Class ElevenVideo lesson
-
35Class Eleven Quiz5 questions
-
36Class Twelve Text(Correlation and Regression)2 Hours
Calculating the correlation between two variables can tell you a lot about the relationship between those variables. If two variables have a strong positive correlation, it means that when one variable increases, the other variable tends to increase as well
-
37Excel Class TwelveVideo lesson
-
38Class Twelve Quiz5 questions
-
39WEEK 4 ASSIGNMENTAssignment
-
40Class ThirteenText(Statistical Analysis)2 Hours
A moving average (MA) is a statistical technique used to smooth out short-term fluctuations in a time series data, highlighting longer-term trends and patterns.
-
41Excel Class ThirteenVideo lesson
-
42Class Thirteen Quiz5 questions
-
43Class Fourteen Text (HYPOTHESIS TEST)2 Hours
A hypothesis test for a sample mean is a statistical procedure used to determine whether a sample mean is significantly different from a known or hypothesized population mean.
-
44Class Fourteen Quiz5 questions
-
45Class Fifteen Text (Introduction to SQL (STRUCTURED QUERY LANGUAGE)2 Hours
SQL (Structured Query Language) is a programming language designed for managing and querying relational databases. It provides a standardized way to interact with databases. The basic structure of an SQL query involves:
Querying Data
-
46SQL Class OneVideo lesson
-
47Class Fifteen Quiz5 questions
-
48WEEK 5 ASSIGNMENTAssignment
-
49Class Sixteen Text(MODIFYING DATA WITHIN DATABASE)2 Hours
There are three main operations: INSERT, UPDATE, and DELETE.
INSERT Statement -
50SQL Class TwoVideo lesson
-
51Class Sixteen Quiz5 questions
-
52Class Seventeen Text (TABLE DESIGNER METHOD IN SQL and OPERATORS)Text lesson
Table Designer" feature in SQL Server Management Studio! That's a very useful feature, especially if you're new to SQL.
-
53Class Seventeen Quiz5 questions
-
54SQL Class ThreeVideo lesson
-
55WEEK 6 ASSIGN MENTAssignment
-
56Class Eighteen Text (ARITHMETIC OPERATORS zArithmetic and Logical Operators and JOINS)2 Hours
ARITHMETIC OPERATORS
Comprises Addition, subtraction, multiplication and Division
-
57SQL Class FourVideo lesson
-
58Class Eighteen Quiz5 questions
-
59Class Nineteen Text(Types of Joins in SQL)2 Hours
TYPES OF JOINS
INNER, LEFT OUTER, RIGHT OUTER, FULL OUTER.
-
60Class Nineteen Quiz5 questions
-
61SQL Class FiveVideo lesson
-
62Class Twenty Text( Group By Statement, Having Statement, Case Statement and Subquery)2 Hours
"GROUP BY" is another built-in function in SQL that allows you to group your data based on a specific field. For example, you could use "GROUP BY" to group your data by the "Region" field in your "Sales" table. This would allow you to see the total price for each Region in your table.
-
63Class Twenty Quiz5 questions
-
64SQL Class SixVideo lesson
-
65WEEK 7 ASSIGNMENTAssignment
-
66Class Twenty-One Text (Window functions and Temporary Table)2 Hours
Window functions
• Ranking functions → assign order (ROW_NUMBER, RANK, DENSE_RANK, NTILE).
• Aggregate functions with OVER → calculate totals/averages per partition while keeping row detail.
• Value functions → peek at other rows (LEAD, LAG, FIRST_VALUE, LAST_VALUE)
Why Use NTILE
• Quartile analysis: Identify top/bottom performers, salary bands, or customer segments.
• Percentile grouping: Split data into deciles (NTILE(10)), quintiles (NTILE(5)), etc.
• Balanced distribution: Unlike RANK or DENSE_RANK, NTILE ensures groups are evenly spread across the dataset.
-
67Class Twenty-One Quiz5 questions
-
68SQL Class SevenVideo lesson
-
69Class Twenty-Two Text(Introduction to POWER BI)2 Hours
What is Power BI?
Power BI is a collection of software services, apps, and connectors that work together to turn your unrelated sources of data into coherent, visually immersive, and interactive insights.
-
70Class Twenty-Two Quiz5 questions
-
71Introduction to Power BI: Power BI Class OneVideo lesson
-
72Class Twenty-Three Text (Pivot, Unpivot table, Merge and Append Queries)2 Hours
Pivot Columns
transforms rows into columns.
Example: If you have sales data with "Month" and "Product" as rows, pivoting can make each product a column with sales values under each month.
-
73Power BI Class TwoVideo lesson
-
74Class Twenty-Three Quiz5 questions
-
75WEEK 8 ASSIGNMENTAssignment
-
76Class Twenty- Four Text (Data modelling)2 Hours
A Data model is a collection of tables and relationships that can be used to create a report.
Is techniques use in creating relationship between two or more tables.
Modeling data is about establishing and maintaining relationships so that you can effectively visualize the data in the form that your business requires.
-
77Class Twenty-Four Quiz5 questions
-
78Power BI Class ThreeVideo lesson
-
79Class Twenty-five Text (Data Analysis Expression )2 Hours
Data Analysis Expression commonly known as DAX is the formula languages that derives PowerBI.
With DAX you can (a) Add calculated columns and Measures to your model using intuitive syntax. (b) Go beyond the capabilities of traditional “grid style” formulas, with powerful and flexible functions built specifically to work with relative data models.
-
80Power BI Class FourVideo lesson
-
81Class Twenty Five Quiz5 questions
-
82Class Twenty-Six Text(CREATING DASHBARD IN POWERBI)2 Hours
CREATING CHART FOR DASHBOARD
In Power BI, charts are a powerful tool for visualizing and manipulating data in the Report View. Here's a step-by-step guide on how to use charts and drag columns to the x and y axes:
-
83Power BI Class FiveVideo lesson
-
84Class Twenty Six Quiz5 questions
-
85WEEK 9 ASSIGNMENTAssignment
-
86Class Twenty-Seven Text (Correlation and forecasting in Power BI)2 Hours
CORRELATION ANALYSIS
Correlation analysis also known as bivariate, is primarily concerned with finding out whether a relationship exist between variables and then determining the magnitude and action of that relationship.
-
87Class Twenty-Seven Quiz5 questions
-
88Power BI Class SixVideo lesson
-
89Class Twenty- Eight Text (Introduction to Python)2 Hours
PYTHON FOR DATA ANALYSIS
-
90Class Nine Text (Python Basics)2 Hours
Variable: A Variable is like a container that is used to store data or values.
· A variable is assigned names which is used to refer its values
· A variable is mutable. Ie its values can change anytime.
For example:
my_list = [1, 2, 3]
my_list[0] = 10 # modify the first element
print(my_list) # [10, 2, 3]
-
91Class Twenty-Nine Quiz5 questions
-
92Python Class OneVideo lesson
-
93Class Thirty Text (Print format and Arithmetic in Python)2 Hours
When printing, you must use small letters.
Firstname = ‘Peter’
Lastname = ‘Okafor’
Print (f ‘your firstname is’, Firstname, ‘and your lastname is’, Lastname)
-
94Class Thirty Quiz5 questions
-
95Python Class TwoVideo lesson
-
96Python Class ThreeVideo lesson
-
97Python Class FourVideo lesson
-
Data Analysis 2026 (Batch B)
-
What is Prerequisite coursesA prerequisite is a specific course that you must complete before you can take another course at the next grade level.