Published
Edited
Oct 3, 2020
Insert cell
md`# Day 37&38&39, 2020-09-30 & 2020-10-01 & 2020-10-02`
Insert cell
md`## Redoing Prof. YY's Dataviz`
Insert cell
d3 = require("d3@6")
Insert cell
cntry_data_raw = d3.json("https://raw.githubusercontent.com/covid19-data/covid19-data/master/output/cntry_stat_owid.json")
Insert cell
us_stat_data_raw = d3.json("https://raw.githubusercontent.com/covid19-data/covid19-data/master/output/us_state_nyt.json")
Insert cell
us_state_data = us_stat_data_raw.map(function(d) {return {
'country_code': d.code,
'country_name': d.name,
'region': "US States", //Note this line of code. This is to add a variable.
'confirmed': d.confirmed,
'deaths': d.deaths,
}})
Insert cell
function ts_diff(a) {
var new_array = [];
new_array.push(a[0][0], a[0][1]); //This will be the starting point
for (var i = 1; i < a.length; i++) {
new_array.push([a[i][0], a[i][1] - a[i-1][1] ])
}; //[i][0] is the date and [i][1] is the confirmed cases data;
return new_array;
// This new_array will be made up of this dataset: [date, number of newly added cases compared to yesterday].
}
Insert cell
function add_past_week_number(a) {
var new_array = [[a[0][0], a[0][1], a[0][1] ]]; //Initiating new_array which is composed of three numbers: date, total confirmed, new confirmed (past week);
var new_confirmed = 0;
//var min_id = 0;
for (var i = 1; i < a.length; i++){
if (i > 7) {
new_confirmed = a[i][1] - a[i-7][1];
} else {
new_confirmed = a[i][1];
};
new_array.push([a[i][0], a[i][1], new_confirmed ]);
}
return new_array;
}
Insert cell
md`
## Selected regions using checkbox
`
Insert cell
import {checkbox} from "@jashkenas/inputs"
Insert cell
import {Scrubber} from "@mbostock/scrubber"
Insert cell
viewof selected_regions = checkbox({
title: "Regions",
options: ["Europe & Central Asia", "North America", "US States", "East Asia & Pacific", "South Asia", "Sub-Saharan Africa", "America & Caribbean", "Middle East & North Africa", "Latin America & Caribbean", "East & North Africa"],
value: ["Europe & Central Asia", "East Asia & Pacific", "North America"],
})
Insert cell
viewof curr_date = Scrubber(d3.timeDays(new Date(2020, 0, 22), new Date()), {
autoplay: true,
loop: false,
alternate: false,
initial: 0,
format: date => date.toLocaleString("ko-KO", {year: "numeric", month:"numeric", day:"numeric"}),
delay: 100
})
//d3.timeDays(start, end). The end here is the current day.
Insert cell
// Check https://stackoverflow.com/a/47785689/13716814 to understand filter
// Check https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes to understand includes
// If d.region is part of the values of selected_regions ["Europe & Central Asia", "East Asia & Pacific", "North America"], the filter function will return "true". Only data returning "true" will be passed off to the next step.
data = cntry_data_raw.concat(us_state_data).filter(function(d) { return selected_regions.includes(d.region);}).map(function(d) {
d.confirmed = add_past_week_number(d.confirmed);
d.deaths = add_past_week_number(d.deaths);
return d;
})
Insert cell
last_index = data[0].confirmed.length - 1
// data[0] is all the data for the first country, ALB
Insert cell
function code_to_name(country_code) {
return data.find(d => d.country_code === country_code).country_name;
}
Insert cell
vis_data = data.map(function(d) {
return {
"country_code": d.country_code,
"country_name": d.country_name,
"population": d.population,
"region": d.region,
"confirmed": d.confirmed.filter(d => new Date(d[0]) < curr_date),
"deaths": d.deaths.filter(d => new Date(d[0]) < curr_date),
}
})
// Notice that within d.confirmed.filter(), there is another function(d){}. Within that function, the d is each line of each country's confirmed column.
Insert cell
color = d3.scaleOrdinal(cntry_data_raw.concat(us_state_data).map(d => d.region), d3.schemeCategory10).unknown("black")
// map(d => d.region): what is passed off to the next step will be changed from each country's info to only each country's region info.
// I don't understand the unknown() function.
Insert cell
params = ({
width: 800,
height: 500,
opac_week: 0.5,
margin: ({top: 25, right: 35, bottom: 35, left: 65}),
xmin: 10,
xmax: 1e6,
ymin: 10,
ymax: 1e6,
});
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more