plunkerでd3 その7
概要
plunkerでd3やってみた。
感染者数 予測API、読んでみた。
写真
サンプルコード
var url = "https://covid19-japan-web-api.now.sh/api/v1/total?predict=true";
d3.json(url, function(data) {
var values = [];
for (var i = 0; i < data.length; i++)
{
values.push({
x: i,
//x: data[i]["date"],
y: data[i]["positive"],
z: data[i]["death"]
});
}
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'
}
}
}, {
'mark': 'line',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'z',
'type': 'quantitative'
},
'color': {
'value': 'tomato'
}
}
}]
};
vegaEmbed('#vis', spec);
});
成果物
var url = "https://covid19-japan-web-api.now.sh/api/v1/total?predict=true";
d3.json(url, function(data) {
var values = [];
for (var i = 0; i < data.length; i++)
{
values.push({
x: i,
//x: data[i]["date"],
y: data[i]["positive"],
z: data[i]["death"]
});
}
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'
}
}
}, {
'mark': 'line',
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'z',
'type': 'quantitative'
},
'color': {
'value': 'tomato'
}
}
}]
};
vegaEmbed('#vis', spec);
});
以上。
Author And Source
この問題について(plunkerでd3 その7), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/3842ca8ef906b9dee58e著者帰属:元の著者の情報は、元の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 .