D3 - how to deal with JSON data structures? D3 - how to deal with JSON data structures? json json

D3 - how to deal with JSON data structures?


When you join data to a selection via selection.data, the number of elements in your data array should match the number of elements in the selection. Your data array has two elements (for Jim and Ray), but the selection you are binding it to only has one SVG element. Are you trying to create multiple SVG elements, or put the score rects for both Jim and Ray in the same SVG element?

If you want to bind both data elements to the singular SVG element, you can wrap the data in another array:

var chart = d3.select("#charts").append("svg")    .data([data])    .attr("class", "chart")    …

Alternatively, use selection.datum, which binds data directly without computing a join:

var chart = d3.select("#charts").append("svg")    .datum(data)    .attr("class", "chart")    …

If you want to create multiple SVG elements for each person, then you'll need a data-join:

var chart = d3.select("#charts").selectAll("svg")    .data(data)  .enter().append("svg")    .attr("class", "chart")    …

A second problem is that you shouldn't use d3.values with an array; that function is for extracting the values of an object. Assuming you wanted one SVG element per person (so, two in this example), then the data for the rect is simply that person's associated scores:

var rect = chart.selectAll("rect")    .data(function(d) { return d.scores; })  .enter().append("rect")    …

If you haven't already, I recommend reading these tutorials:


This may clarify the nested aspect, in addition to mbostock's fine answer.

Your data has 2 degrees of nesting. You have an array of 2 objects, each has an array of ints. If you want your final image to reflect these differences, you need to do a join for each.

Here's one solution: Each user is represented by a group g element, with each score represented by a rect. You can do this a couple of ways: Either use datum on the svg, then an identity function on each g, or you can directly join the data on the g. Using data on the g is more typical, but here are both ways:

Using datum on the svg:

var chart = d3.select('body').append('svg')  .datum(data)             // <---- datum  .attr('width',800)  .attr('height',350)  .selectAll('g')  .data(function(d){ return d; })  // <----- identity function  .enter().append('g')    .attr('class', function(d) { return d.user; })    .attr('transform', function(d, i) { return 'translate(0, ' + i * 140 + ')'; })    .selectAll('rect')    .data(function(d) { return d.scores; })    .enter().append('rect')      .attr('y', function(d, i) { return i * 20; })      .attr('width', function(d) { return d; })      .attr('height', 20);

Using data on the group (g) element:

var chart = d3.select('body').append('svg')  .attr('width',800)  .attr('height',350)  .selectAll('g')  .data(data)          // <--- attach directly to the g  .enter().append('g')    .attr('class', function(d) { return d.user; })    .attr('transform', function(d, i) { return 'translate(0, ' + i * 140 + ')'; })    .selectAll('rect')    .data(function(d) { return d.scores; })    .enter().append('rect')      .attr('y', function(d, i) { return i * 20; })      .attr('width', function(d) { return d; })      .attr('height', 20);

Again, you don't have to create these g elements, but by doing so I can now represent the user scores differently (they have different y from the transform) and I can also give them different styles, like this:

.jim {  fill: red;}.ray {  fill: blue;}