Published
Edited
Jul 31, 2020
2 forks
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
accChart = {
const svg = d3
.create('svg')
.attr('width', config.chartAccWidth)
.attr('height', config.chartAccHeight);

const stage = svg
.append('g')
.attr(
...ttrans(config.chartAccMarginHorizontal, config.chartAccMarginVertical)
);
const axisX = svg
.append('g')
.attr(
...ttrans(
config.chartAccMarginHorizontal,
config.chartAccHeightClipped + config.chartAccMarginVertical
)
)
.call(chartAccAxisX);

const axisY = svg
.append('g')
.attr(
...ttrans(config.chartAccMarginHorizontal, config.chartAccMarginVertical)
)
.call(chartAccAxisY);

function render(_targetTime) {
stage
.selectAll('.bar')
.data(totalData, d => d.date)
.join(enterAccBar, updateAccBar(_targetTime));
}
return Object.assign(svg.node(), { render });
}
Insert cell
chartAccAxisX = d3
.axisBottom(scaleLineX)
.tickFormat(d =>
new Date(d).toLocaleString("ko", { month: "long", day: "numeric" })
)
Insert cell
chartAccAxisY = d3.axisLeft(scaleAxisY)
Insert cell
updateAccBar = _targetTime => bar =>
bar.attr('opacity', d => (d.date >= _targetTime ? .5 : 1))
Insert cell
enterAccBar = bar =>
bar
.append('rect')
.attr('class', 'bar')
.attr('data-date', d => d.date)
.attr('height', d => scaleLineY(d.confirmedInc))
.attr('width', d => config.barWidth)
.attr('transform', (d, i) =>
trans(
i * (config.barWidth + config.barGapX),
config.chartAccHeightClipped - scaleLineY(d.confirmedInc)
)
)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// timeData[timeData.length - 100]
Insert cell
// getProvinceTimeData('Seoul')
Insert cell
radiusScale(0)
Insert cell
getTotalData(new Date('2020-02-01'))
Insert cell
Insert cell
Insert cell
scaleLineX = d3
.scaleLinear()
.domain([timeMin, timeMax])
.range([0, config.chartAccWidthClipped])
Insert cell
scaleLineY = d3
.scaleSqrt()
.domain([0, maxAcc])
.range([0, config.chartAccHeightClipped])
Insert cell
scaleAxisY = d3.scaleSqrt([maxAcc, 0], [0, config.chartAccHeightClipped])
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
getDateDiff = (a, b) => Math.ceil((a - b) / 86400000)
Insert cell
confirmLabelText = d => `확진자 수: ${getTotalData(d).confirmed}`
Insert cell
eventLabelText = d =>
d.date.toLocaleString("ko", { month: "long", day: "numeric" }) +
'-' +
d.nameKr
Insert cell
dateLabelText = date =>
date.toLocaleString("ko", { month: "long", day: "numeric" }) +
`(D+${getDateDiff(date, timeMin)})`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
addIncrementalData = (d, i, a) => {
const prev = a[i - 1] || { confirmed: 0, deceased: 0, test: 0, released: 0 };
const current = Object.assign({}, d);
current.confirmedInc = current.confirmed - prev.confirmed;
current.deceasedInc = current.deceased - prev.deceased;
current.releasedInc = current.released - prev.released;
current.testInc = current.test - prev.test;
return current;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
confirmMax = d3.max(timeData, d => d.confirmed)
Insert cell
releaseMax = d3.max(timeData, d => d.released)
Insert cell
deceasedMax = d3.max(timeData, d => d.deceased)
Insert cell
maxData = Math.max(confirmMax, releaseMax, deceasedMax)
Insert cell
timeMax = d3.max(timeData, d => d.date)
Insert cell
timeMin = d3.min(timeData, d => d.date)
Insert cell
timeData = {
const csv = await d3.csvParse(dataTimeProvince, csvParser);
return csv;
}
Insert cell
d3.csvParse(dataTime)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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