plunkerでd3 その4
概要
plunkerでd3やってみた。
covid-19のcsv読んで、日々のデータ取ってみた。
写真
サンプルコード
var url = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv";
var out = document.getElementById("out");
d3.csv(url, function(data) {
var values = [];
for (var i = 0; i < data.length; i++)
{
if (data[i]['Country/Region'] == 'Japan')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Japan"
});
});
}
}
var p = 0;
for (i = 0; i < values.length; i++)
{
out.value += values[i].y - p + ", ";
p = values[i].y;
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'layer': [{
'mark': 'point',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative',
},
'color': {
"field": "c",
"type": "nominal"
}
}
}, {
'mark': 'line',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative',
},
'color': {
"field": "c",
"type": "nominal"
}
}
}]
};
vegaEmbed('#vis', spec);
});
成果物
var url = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv";
var out = document.getElementById("out");
d3.csv(url, function(data) {
var values = [];
for (var i = 0; i < data.length; i++)
{
if (data[i]['Country/Region'] == 'Japan')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Japan"
});
});
}
}
var p = 0;
for (i = 0; i < values.length; i++)
{
out.value += values[i].y - p + ", ";
p = values[i].y;
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'layer': [{
'mark': 'point',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative',
},
'color': {
"field": "c",
"type": "nominal"
}
}
}, {
'mark': 'line',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y',
'type': 'quantitative',
},
'color': {
"field": "c",
"type": "nominal"
}
}
}]
};
vegaEmbed('#vis', spec);
});
以上。
Author And Source
この問題について(plunkerでd3 その4), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/ced961b03a0198e51d17著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .