What You Will Learn
- A simple, accurate definition of data analytics
- The four types of analytics and what each one does
- How the four types relate to each other
- Which type most beginners actually start with
Why This Topic Matters
If someone asks "what does a data analyst do?" and you can only answer "they analyze data", you do not yet have a useful mental model. The four-types framework gives you a precise vocabulary that turns vague intuition into a clear picture. Every analysis you will ever do fits into one of these four buckets, and knowing which one you are doing stops you from over-engineering (or under-delivering).
The Simple Definition
Data analytics is the process of turning raw data into answers that someone can act on.
That is it. The whole job. Everything else — the SQL, the spreadsheets, the Python, the dashboards — is just a tool to get there.
The Four Types of Analytics
The analytics industry commonly divides work into four types, based on the kind of question they answer:
| Type | Question it answers | Example |
|---|---|---|
| Descriptive | What happened? | "Sales last month were ₹4,20,000, down 8% from the previous month." |
| Diagnostic | Why did it happen? | "Sales dropped because the Mumbai store was closed for 6 days due to flooding." |
| Predictive | What will happen next? | "Based on the trend, sales next month will likely be between ₹3,80,000 and ₹4,10,000." |
| Prescriptive | What should we do? | "Run a 15% discount on the top 5 SKUs in Mumbai for 2 weeks to recover lost sales." |
Notice the progression: each type is harder and more valuable than the one before. Most analytics work in the world is descriptive. Predictive and prescriptive work is rarer, requires more skill, and is where machine learning starts to enter the picture.
Real-World Analogy: Going to a Doctor
Imagine you visit a doctor because you feel tired. The doctor's thinking follows the same four steps:
- Descriptive: "Your hemoglobin is 9.5 g/dL." (What is the situation?)
- Diagnostic: "Low hemoglobin because of iron deficiency, likely from a vegetarian diet without enough iron-rich foods." (Why?)
- Predictive: "Without treatment, you will feel increasingly tired over the next 3 months." (What will happen?)
- Prescriptive: "Take an iron supplement daily and add spinach and lentils to your diet." (What should we do?)
The doctor moves through the four types in order. Analysts do the same.
How the Four Types Build on Each Other
You cannot skip steps. To diagnose why sales dropped, you must first know that sales dropped (descriptive). To predict next month, you must understand the drivers (diagnostic). To prescribe an action, you must be able to predict its effect.
This is why most analytics teams spend 70–80% of their time on descriptive analytics. Without a solid "what happened" layer, the higher layers collapse.
Which Type Should You Learn First?
Descriptive. Always. It is the foundation. Every later lesson in this course is mostly building your descriptive toolkit — SQL aggregations, pivot tables, basic stats, charts. By the end of Phase 6 (Statistics) you will be solidly descriptive with a touch of diagnostic. Phases 7–9 add diagnostic depth through visualization and business analysis.
Predictive and prescriptive analytics need statistics, machine learning, and domain expertise that are beyond this course. But once you finish, you will be ready to learn them — because you cannot predict what you cannot first describe.
Descriptive vs Diagnostic — A Closer Look
These two are often confused. Here is the test:
- If your answer is a fact about the data ("sales were ₹4.2L"), it is descriptive.
- If your answer is an explanation of the fact ("sales were ₹4.2L because Mumbai was closed"), it is diagnostic.
Diagnostic work almost always involves comparing groups — this month vs last month, this store vs that store, customers who got the discount vs those who did not. We will practice this comparison thinking in lesson 10 — Business Questions vs Data Questions.
What "Actionable" Means
Many analyses fail not because the math is wrong but because the result is not actionable. Compare:
- Not actionable: "Customer satisfaction varies by region."
- Actionable: "Customers in the South region rate delivery speed 2.1 points lower than the national average; the South region's average delivery time is 47 minutes vs the national 32 minutes. Adding 2 riders in the South would bring delivery time to ~33 minutes and likely raise satisfaction."
The second version tells someone what to do. That is what makes it analytics instead of trivia.
Common Mistakes
- Jumping straight to prediction. Beginners want to build ML models before they can describe the data. Predictions built on a weak descriptive foundation are usually wrong.
- Reporting numbers without context. "Sales = ₹4.2L" is descriptive but barely useful. "Sales = ₹4.2L, down 8% MoM" is also descriptive and useful. Always add comparison.
- Confusing dashboards with analytics. A dashboard is a tool. Analytics is the thinking that goes into deciding what to put on the dashboard and what the numbers mean.
- Skipping the "so what?". If your analysis ends with a number and no interpretation, you stopped too early.
Practical Exercise (5 minutes)
Pick any number you encountered today — your screen time, your bank balance, the temperature outside. Write down:
- A descriptive statement about it (just the fact).
- A diagnostic guess about why it is what it is.
- A predictive guess about what it will be tomorrow.
- A prescriptive action you could take to change it.
Example: Screen time = 4h 12m today. (Diagnostic: long because I watched a 90-minute movie.) (Predictive: tomorrow likely 3h unless I delete the streaming app.) (Prescriptive: set a 30-min daily limit on the streaming app.)
Mini Challenge
Find any news headline that cites a statistic (e.g., "unemployment rose to X%"). Without reading the article, write down: is this headline descriptive, diagnostic, predictive, or prescriptive? Then read the article and check whether the journalist goes further than the type in the headline. Most stop at descriptive.
Key Takeaways
- Data analytics = turning raw data into actionable answers.
- Four types: Descriptive (what), Diagnostic (why), Predictive (next), Prescriptive (do).
- You cannot skip levels — prediction needs diagnosis needs description.
- Most analytics work is descriptive. Master it first.
- An analysis is only useful if someone can act on the result.
Previously learned: Phase 1 (lessons 01–06) taught you what data is, how it is shaped, classified, typed, and stored.
Today: You learned what analysts actually do with data, and the four levels of analytics work.
Next: Lesson 08 takes a closer look at the four types with concrete business examples for each.
FAQ
Is data science the same as data analytics?
They overlap but are not identical. Data analytics focuses on answering business questions using data, often with SQL, Excel, and basic statistics. Data science usually adds programming, machine learning, and software engineering to build predictive systems. Analytics is the foundation; data science builds on top of it.
Do I need machine learning to do analytics?
No. Most analytics work — including most of what gets done at major companies — uses only descriptive and diagnostic methods. You can spend an entire career in analytics without ever training a machine-learning model.
Comments
Comments
Post a Comment