In everyday speech, "data," "information," and "knowledge" are used interchangeably, and nothing bad happens. In a data project, blurring them is how teams end up with a dashboard nobody acts on, or a scraper that collects gigabytes of rows that never become a decision. The three words describe three different stages of refinement — raw material, structured meaning, and applied understanding — and knowing which one you're actually holding tells you what work still has to be done. Here's the distinction, the DIKW pyramid that formalizes it, and why it matters when you're turning web data into something useful.
Data: the raw material
Data is raw, unprocessed facts with no context: symbols, numbers, characters, measurements. On its own, a piece of data doesn't tell you anything, because you don't yet know what it represents.
- The string
$1,299is data. - The characters
a p p l eare data. - A row of numbers
48.85, 2.29is data.
Each is just a token. Is $1,299 a price, a salary, an account balance? Is
apple a fruit, a company, or someone's password? You can't tell — there's no
context attached. In scraping terms, the raw HTML you pull off a page, before you
parse it, is data in its purest form: present, but not yet meaningful.
Information: data with context and structure
Information is data that has been given context, structure, and relationships — processed so it answers questions like what, who, where, when. The moment you attach meaning, uncertainty drops and information appears. (Information theory even quantifies this: reducing uncertainty — entropy — is what "gaining information" means.)
$1,299becomes information when it's labeled: "iPhone 16 Pro, list price $1,299, on retailer X, on 11 July 2026."48.85, 2.29becomes information when you know it's latitude and longitude — a location in Paris.
This is what parsing does. Feed a scraper's raw HTML into an extractor and you get a structured record — product, price, currency, date, source — and that record is information. It answers questions the raw data couldn't. Cleaning and normalizing that output is precisely the step that turns data into reliable information.
Knowledge: information applied
Knowledge is what you get when information is understood, connected to other information, and applied. It answers how and why, and it supports action.
- One labeled price is information. Ten thousand labeled prices, tracked over time and compared across competitors, become the knowledge that "Retailer X discounts this category every Tuesday, and we're consistently undercut by 8%."
- A single location is information. A map of where your customers cluster is knowledge you can open a store on.
The classic illustration: a sentence in a language you don't speak carries information — it clearly means something — but until it's translated and understood, you can't get any knowledge out of it. Knowledge is the stage where data finally influences a decision.
The DIKW pyramid
These three ideas are usually drawn as the DIKW hierarchy — Data, Information, Knowledge, and a fourth tier, Wisdom — each layer built from the one below and adding context, meaning, and applicability as you rise.
| Layer | What it is | Question it answers | Web-data example |
|---|---|---|---|
| Data | Raw, unprocessed facts | — | Unparsed HTML; the string $1,299 |
| Information | Data with context/structure | What, who, where, when | A structured record: product, price, date, source |
| Knowledge | Information applied and connected | How, why | "Competitor X undercuts us on Tuesdays" |
| Wisdom | Judgment about what to do | What should we do | "Match their Tuesday price on our top 20 SKUs" |
Wisdom — the top of the pyramid — is the human judgment layer: knowing not just what the knowledge says but what to do about it, and when the rules don't apply. It's the part software supports but doesn't replace.
Why the distinction matters for data projects
This isn't philosophy for its own sake — the DIKW ladder maps directly onto the stages of a data project, and most failures are a project stuck one rung too low:
- Collecting data isn't the finish line. A scrape that returns raw pages is data. Without parsing and cleaning, it never becomes information, and it certainly never becomes a decision. Plan the whole ladder, not just collection.
- Scope your ask precisely. "Get me the data" and "get me the knowledge" are wildly different amounts of work. Naming the layer you actually need — a raw feed, a clean structured dataset, or an answer to a business question — sets realistic expectations.
- Value climbs as you climb. Raw data is cheap and abundant; applied knowledge is scarce and valuable. The refinement work between the rungs — parsing, cleaning, joining, analysis — is where the value is actually created. This is also the core idea behind data mining: systematically climbing from information to knowledge.
For web data specifically, the ladder is: raw HTML (data) → parsed, normalized records (information) → analysis across many records over time (knowledge) → decisions (wisdom). If you only want the top of that ladder without owning every step below it, that's exactly what a data as a service arrangement delivers — analysis-ready information (and often the knowledge layer too) instead of raw dumps you still have to refine.
FAQ
What's the simplest way to remember the difference between data and
information?
Data is a fact with no context ($1,299); information is that fact with context
("the list price of a specific product on a specific date"). Context is the
thing that gets added.
What is the DIKW pyramid? A model that arranges Data, Information, Knowledge, and Wisdom as a hierarchy, where each level adds meaning and applicability to the level below it.
Is knowledge the same as wisdom? No. Knowledge is understood, applicable information ("X undercuts us on Tuesdays"). Wisdom is the judgment about what to do with it, and when the usual rule shouldn't apply — the human layer at the top of the pyramid.
How does this apply to web scraping? Scraped HTML is data; parsing and cleaning turn it into information; analyzing many records over time produces knowledge; acting on it is wisdom. Most of the value is created in the refinement steps, not in the raw collection.