Overview of Core Tools Used by Data Analysts#
š± Foundations š§° Tools, Applications & Ethics Lesson 020
ā Previous Ā· Next ā¶ Ā· ā Section Ā· ā Hub
Important
⨠AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.
The working toolkit#
Everything so far has been mindset and process; the rest of the course is largely tools. Four families cover the vast majority of working analystsā time, and this course teaches all four. The right question is never āwhich is best?ā but āwhich fits this task, this data size, and this audience?ā
The four families#
Spreadsheets (Excel, Google Sheets). The universal entry point: data visible in a grid, formulas for calculation, built-in sorting, filtering, pivot tables, and charts. Strengths: immediacy, transparency, and the fact that every stakeholder can open one. Fit: small-to-medium datasets, quick analyses, and anything a business partner must inspect themselves.
SQL (Structured Query Language). The language for asking questions of databases, where organisational data actually lives. A few clauses ā
SELECT,FROM,WHERE,GROUP BYā retrieve and aggregate millions of rows in seconds. Fit: data too large or too shared for a spreadsheet; the single most consistently demanded analyst skill.Visualization tools (Tableau and its peers). Purpose-built for turning results into interactive charts and dashboards. Fit: exploration by eye and communication to stakeholders ā the Share phase, industrialised.
Programming languages (Python ā this courseās Section 7 ā and R). Code handles what the others cannot: automation of repeated work, cleaning logic too complex for formulas, statistical analysis, and reproducible pipelines where the script is the documentation.
One task, four lenses#
The same monthly-sales-by-region question: in a spreadsheet, a pivot table; in
SQL, SELECT region, SUM(sales) ... GROUP BY region; in Tableau, a map
coloured by the same aggregate; in Python, three lines of pandas that can run
automatically every month. Identical logic ā grouping and summing ā in four
costumes. Learn the logic once and each new tool is mostly new syntax, which
is why this course keeps re-solving familiar problems as the tools advance.
Choosing, in practice#
Three questions settle most choices. How big is the data? Spreadsheets strain past tens of thousands of rows; SQL and Python do not. Who consumes the result? A stakeholder who lives in Excel should receive Excel; a team that monitors continuously deserves a dashboard. Will it repeat? One-off work favours the fastest tool to hand; anything monthly favours a scripted, rerunnable pipeline. Real projects chain the families ā SQL to extract, Python to clean, a spreadsheet or dashboard to deliver ā and fluency across the chain is precisely what the coming sections build.
The caveat#
Tools date; the toolkitās shape does not. Vendors and versions will change after this course, but āa grid for inspection, a query language for scale, a canvas for communication, code for automationā has been the stable anatomy for decades. Invest accordingly: deepest in the logic, comfortably in todayās tools, and calmly toward tomorrowās.
Hint
See also
Source article Adapted (context, re-expressed) in our own words from: https://insightful-data-lab.com/2023/07/30/overview-of-core-tools-used-by-data-analysts/ (insightful-data-lab.com).