A better way toPrepare for your next big data role
Practise Excel, SQL, Power BI and Python using real-world datasets, guided projects, browser-based tools and instructor feedback.
- Guided projects
- 6Guided projects
- Graded SQL exercises
- 11Graded SQL exercises
- Learners practising
- 92Learners practising
FROM category_margin
ORDER BY margin_pct DESC;
| category | revenue | margin_pct |
|---|---|---|
| Personal Care | 4,182,940 | 34.98 |
| Snacks | 2,461,220 | 31.87 |
| Beverages | 6,038,115 | 27.94 |
| Household | 3,120,660 | 22.05 |
Four tools, one workflow
The stack a working data analyst actually uses
Each project tells you which tools it expects, and every submission is reviewed by a Data Science East Africa instructor against the same published rubric.
A real SQL laboratory, not a quiz box
The workspace runs DuckDB compiled to WebAssembly. Drop in a CSV, Excel workbook, JSON or Parquet file and query it immediately — your data never leaves your machine, and there is nothing to install.
- Monaco editor with auto-completion for your own tables and columns
- Joins, CTEs, window functions, date functions and views
- Query history, saved scripts, multiple tabs and CSV export
- Graded exercises marked on the server, so a score always means something
SELECT
p.category,
ROUND(SUM(s.revenue), 2) AS revenue,
ROUND(SUM(s.cost_of_goods), 2) AS cost,
ROUND(SUM(s.revenue)
- SUM(s.cost_of_goods), 2) AS gross_profit,
ROUND((SUM(s.revenue)
- SUM(s.cost_of_goods))
/ SUM(s.revenue) * 100, 2) AS margin_pct
FROM retail_sales s
JOIN retail_products p
ON p.product_id = s.product_id
GROUP BY p.category
ORDER BY margin_pct DESC;How it works
From dataset to portfolio piece
- 1
Pick a real business problem
Every project opens with a client, a role and a decision that depends on your analysis — not a toy dataset.
- 2
Work in the browser or your own tools
Query the data in the SQL laboratory, or download it for Excel, Power BI and Python.
- 3
Submit and get marked
An instructor scores your work against a published rubric and returns specific, written feedback.
- 4
Publish it to your portfolio
Approved work becomes a public case study you can send to an employer.
Marked against a real rubric
Data cleaning, technical accuracy, analysis quality, visualisation, insight, recommendations and documentation — each weighted and scored separately.
Badges that mean something
SQL Joins Champion, Window Functions Master, Power BI Storyteller and more, each awarded for demonstrated work rather than time spent.
A portfolio you control
Publish approved projects to a public page with your dashboards and repositories, and keep anything you would rather not share private.
Your next interview will ask what you have built
Start with one project. Finish it properly, get it marked, and publish it. Then do it again.