plunkerでd3 その3
概要
plunkerでd3やってみた。
covid-19のcsv読んで、vegaで片対数グラフにしてみた。
写真
サンプルコード
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";
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"
});
});
}
if (data[i]['Country/Region'] == 'Korea, South')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Koria, South"
});
});
}
if (data[i]['Country/Region'] == 'Germany')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Germany"
});
});
}
if (data[i]['Country/Region'] == 'Taiwan*')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Taiwn"
});
});
}
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'mark': 'line',
'transform': [{
"calculate": "(datum.y + 0.1)/10",
"as": "y1"
}],
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y1',
'type': 'quantitative',
"scale": {
"type": "log"
}
},
'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";
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"
});
});
}
if (data[i]['Country/Region'] == 'Korea, South')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Koria, South"
});
});
}
if (data[i]['Country/Region'] == 'Germany')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Germany"
});
});
}
if (data[i]['Country/Region'] == 'Taiwan*')
{
var x = 0;
data.columns.slice(4).map(function(d) {
x++;
values.push({
x: x,
y: data[i][d],
c: "Taiwn"
});
});
}
}
const spec = {
'$schema': 'https://vega.github.io/schema/vega-lite/v2.json',
'width': 300,
'height': 300,
'data': {
'values': values
},
'mark': 'line',
'transform': [{
"calculate": "(datum.y + 0.1)/10",
"as": "y1"
}],
'encoding': {
'x': {
'field': 'x',
'type': 'quantitative'
},
'y': {
'field': 'y1',
'type': 'quantitative',
"scale": {
"type": "log"
}
},
'color': {
"field": "c",
"type": "nominal"
}
}
};
vegaEmbed('#vis', spec);
});
以上。
Author And Source
この問題について(plunkerでd3 その3), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/244d3445e460133a41e4著者帰属:元の著者の情報は、元の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 .