0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

plunkerでd3 その5

Posted at

概要

plunkerでd3やってみた。
covid-19のjson読んで、table作ってみた。

写真

image.png

サンプルコード


d3.json("https://covid19-japan-web-api.now.sh/api/v1/positives", function(error, data) {
  var keys = ["id", "announcement_date", "diagnosis_date",
  "prefecture", "residence_prefecture", "age", "gender", "attribute", "prefecture_number", "travel_or_contact", "detail", "cluster", "src", "onset", "symptom", "death_or_discharge_date", "comment1", "outcome", "outcome_src", "comment2"];
  var table = d3.select("body").append("table").attr("border", "1")
  table.append("thead").append("tr").selectAll("th").data(keys).enter().append("th").text(function(d) {
    return d;
  });
  for (var i = 0; i < data.length; i++)
  {
    var rows = [];  
    keys.map(function(c) {
      rows.push(data[i][c])
    });
    table.append("tbody").append("tr").selectAll("td").data(rows).enter().append("td").text(function(d) {
      return d;
    });
  }
});

成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?