Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Evaluate the group line chart in Lesson 2 based on design principles for data visualization. Compare with small multiple line chart in https://d3-graphgallery.com/graph/line_smallmultiple.html Lesson 2

Evaluate the group line chart in Lesson 2 based on design principles for data visualization. Compare with small multiple line chart in https://d3-graphgallery.com/graph/line_smallmultiple.html

Lesson 2 code in visual studio code:

// set the dimensions and margins of the graph

var margin = {top: 10, right: 30, bottom: 30, left: 60},

width = 460 - margin.left - margin.right,

height = 400 - margin.top - margin.bottom;

// append the svg object to the body of the page

var svg = d3.select("#my_dataviz")

.append("svg")

.attr("width", width + margin.left + margin.right)

.attr("height", height + margin.top + margin.bottom)

.append("g")

.attr("transform",

"translate(" + margin.left + "," + margin.top + ")");

//Read the data

d3.csv("https://raw.githubusercontent.com/holtzy/data_to_viz/master/Example_dataset/5_OneCatSevNumOrdered.csv", function(data) {

// group the data: I want to draw one line per group

var sumstat = d3.nest() // nest function allows to group the calculation per level of a factor

.key(function(d) { return d.name;})

.entries(data);

// Add X axis --> it is a date format

var x = d3.scaleLinear()

.domain(d3.extent(data, function(d) { return d.year; }))

.range([ 0, width ]);

svg.append("g")

.attr("transform", "translate(0," + height + ")")

.call(d3.axisBottom(x).ticks(5));

// Add Y axis

var y = d3.scaleLinear()

.domain([0, d3.max(data, function(d) { return +d.n; })])

.range([ height, 0 ]);

svg.append("g")

.call(d3.axisLeft(y));

// color palette

var res = sumstat.map(function(d){ return d.key }) // list of group names

var color = d3.scaleOrdinal()

.domain(res)

.range(['#e41a1c','#377eb8','#4daf4a','#984ea3','#ff7f00','#ffff33','#a65628','#f781bf','#999999'])

// Draw the line

svg.selectAll(".line")

.data(sumstat)

.enter()

.append("path")

.attr("fill", "none")

.attr("stroke", function(d){ return color(d.key) })

.attr("stroke-width", 1.5)

.attr("d", function(d){

return d3.line()

.x(function(d) { return x(d.year); })

.y(function(d) { return y(+d.n); })

(d.values)

})

})

image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions