Skip to content
Student Login

JavaScript’s most popular dataviz library

Last updated: February 2019 👉 livestreamed every last Sunday of the month. Join live or subscribe by email 💌

Yesterday we talked about how data visualization helps you understand the world. Today I wanted to tell you about JavaScript's most popular data visualization library 👉 D3.

D3 is amazing.

D3 can do stuff like this

And like this

D3 can even do 3D globe effects like this 😱

24R4Mll

No wonder D3 is so popular. Like 82,000 stars on GitHub popular.

Used by The New York Times, The Guardian, and others for data journalism. Powering tools at Netflix, Uber, Gusto, 23andMe and other industry giants. D3 is everywhere.

If you saw an interactive data visualization, chances are it was built with D3.

2 reasons D3 is so popular 👇

1) Data science is the fastest growing field in software engineering [1]

2) D3 is the best way to build custom dataviz on the web. SVG, HTML, Canvas, even WebGL. You can do it all with D3.

D3 comes with a rich ecosystem of functions for almost anything you can think of. From simple medians, to automatic axis generators, and force diagrams.

Want to build a chart? You can; D3 might be too powerful.

Want a map? D3 has 'em.

Want an interactive dashboard? D3.

Want to wow users with a unique twist on your dataset? Yep, D3.

Want users to dig into their own data? D3.

D3 is where it's at for custom interactive data visualization on the web. ✌️

But have you tried learning D3 before? oof

Here's how it went when I first tried to learn D3.

"A-ha! I have an idea"

I took my idea and looked for a dataset. Some people have the dataset first. That's probably smart.

And then ...

I had no idea how to start. I knew D3 was great. I knew it could do what I wanted. But WHAT DO I DO!?

So I looked for an example ... and discovered this mess

z7HIM2z

Ugh ... what is this code even doing? No matter, copy paste and hope for the best, right? As long as it works.

And then you tweak and tinker and move stuff around until the project looks right. A working visualization great success!

9echESi

Sure you don't quite understand how it works and you'd struggle to change anything ... but hey who understands their D3 code anyway? Almost no-one.

It's like D3 was designed by someone with a PhD in data visualization. (it was)

3 key insights that help you learn D3.js from scratch

Good news!

Turns out D3 ain't so bad. 3 little concepts help you understand any example out there.

It's a trick I teach in my workshops. The usual response goes something like "That's it!? That's what's going on?"

Yep. Now I'm about to tell you :)

1) Data manipulation vs. DOM manipulation

All D3 examples are split into two parts:

  1. Data manipulation
  2. DOM manipulation

First you prep your values, then you render.

I had to go through many examples to notice what's going on. Inference learning is hard. Most people miss this pattern and it makes D3 look more confusing than it is.

The code above is part of a bar chart. Straight from D3's documentation.

Here it is again

static barchartcode 6fbc274eed4cba9b32493cab9607ff61 d9514

Doesn't make a lot of sense does it? How does that 👆 create this 👇

9echESi

Here's how.

First you have Data Manipulation.

static barchartcode data b62f3f758e2a1b37cb436d66a54846d1 d9514

  • some sizing variables (margin, width, height)
  • two scales to help with data-to-coordinates conversion (x, y)
  • load the dataset (d3.tsv) and update scale domains
  • use scales to calculate attributes during DOM manipulation

And here's the part that paints stuff on your screen

static barchart dom 0d48cb4e05c4cbfcf2201b136ba2e6e3 d9514

DOM manipulation in D3 happens via D3 selections. They're a lot like jQuery $(something). Personally I like to do this part with React.

Our example does a few things here

  • selects the <svg> node (d3.select)
  • appends a grouping <g> node (.append) with an SVG positioning attribute (translate)
  • adds a bottom axis by appending a <g>, moving it, then calling d3.axisBottom . D3 has built-in axis generators
  • adds a left axis using the same approach but rotating the ticks
  • appends a text label "Frequency" to the left axis
  • uses selectAll.data to make a virtual selection of .bar nodes and attach some data, then for every new data value (.enter), appends a <rect> node and gives it attributes

That last part is people always get lost. It looks like magic. I published my first D3 book in 2013 and I still think that's magic. 🧙‍♂️

It's a declarative approach to rendering data. Works great, hard to understand.

You can think of .enter as a loop over your data and everything chained after .enter is your loop's body. Sort of like doing data.map(d => append(rect).setManyAttributes())

2) Scales

Scales are D3's most versatile concept. They help you translate between two different spaces. Like, mathematical spaces. I told you this thing was invented by someone with a PhD.

Scales work like the mathematical functions you learned about in school. A domain maps to a range using some sort of formula.

wikipedia commons thumb d df Function color example 3 svg 440px Function color example 3 svg

Colored shapes in the domain map to colors in the range. No formula for this one, which makes it an ordinal scale.

<code>let shapes = d3.scaleOrdinal()
.domain(['triangle', 'rectangle', ...)
.range(['red', 'orange', ...)
</code>

Once you have this scale, you can use it to translate from shapes to colors. shapes('triangle') returns 'red', rectangle is orange, etc..

You can create many different types of scales.

Linear, logarithmic, quantize, etc. Any basic transformation you can think of exists. The rest you can create by writing custom scales.

You're most often going to use scales to turn data values into coordinates.

3) D3 layouts

Sure .enter.append looks like magic, but D3 layouts are the real mind=blown in the D3 ecosystem. They take your input data and return a full-featured visualization.

For example, a force layout using forces between nodes to place them on the screen.

I don't know how that works and that's the point. You don't have to. The layout does it for you.

Here's a key insight about layouts: Layouts are the data part.

You take a forceLayout and feed it your data. It returns an object with a tick event callback.

var simulation = d3.forceSimulation()
.force("link", d3.forceLink().id(function(d) { return d.id; }))
.force("charge", d3.forceManyBody())
.force("center", d3.forceCenter(width / 2, height / 2));

This simulation now handles everything about rendering nodes. Changes their positions on every tick callback.

But it is up to you to render them.

A layout handles your data visualization in the abstract. You're still in control of rendering. For a force layout, you have to update the DOM on every tick of the animation.

Once I figured this out, all fancy visualizations out there started making sense.

What's something surprising you learned recently? Have you tried D3? tweet me

Cheers, ~Swizec

PS: you can watch me explain all this in a 5 min video

About the Author

Hi, I’m Swizec Teller. I help coders become software engineers.

Story time 👇

React+D3 started as a bet in April 2015. A friend wanted to learn React and challenged me to publish a book. A month later React+D3 launched with 79 pages of hard earned knowledge.

In April 2016 it became React+D3 ES6. 117 pages and growing beyond a single big project it was a huge success. I kept going, started live streaming, and publishing videos on YouTube.

In 2017, after 10 months of work, React + D3v4 became the best book I'd ever written. At 249 pages, many examples, and code to play with it was designed like a step-by-step course. But I felt something was missing.

So in late 2018 I rebuilt the entire thing as React for Data Visualization — a proper video course. Designed for busy people with real lives like you. Over 8 hours of video material, split into chunks no longer than 5 minutes, a bunch of new chapters, and techniques I discovered along the way.

React for Data Visualization is the best way to learn how to build scalable dataviz components your whole team can understand.

Some of my work has been featured in 👇

Created bySwizecwith ❤️