freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/create-a-scatterplot-with-s...

2.0 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7fab367417b2b2512bd7 Create a Scatterplot with SVG Circles 6 使用SVG圈创建散点图

Description

散点图是另一种可视化。它通常使用圆来映射数据点,每个数据点都有两个值。这些值与xy轴相关联,用于在可视化中定位圆。 SVG有一个circle标记来创建圆形。它的工作方式与条形图中使用的rect元素非常相似。

Instructions

使用data() enter()append()方法将dataset绑定到附加到SVG画布的新circle元素。 注意
圆圈将不可见,因为我们尚未设置其属性。我们将在下一次挑战中做到这一点。

Tests

tests:
  - text: 您的代码应该有10个<code>circle</code>元素。
    testString: 'assert($("circle").length == 10, "Your code should have 10 <code>circle</code> elements.");'

Challenge Seed

<body>
  <script>
    const dataset = [
                  [ 34,    78 ],
                  [ 109,   280 ],
                  [ 310,   120 ],
                  [ 79,    411 ],
                  [ 420,   220 ],
                  [ 233,   145 ],
                  [ 333,   96 ],
                  [ 222,   333 ],
                  [ 78,    320 ],
                  [ 21,    123 ]
                ];


    const w = 500;
    const h = 500;

    const svg = d3.select("body")
                  .append("svg")
                  .attr("width", w)
                  .attr("height", h);

    svg.selectAll("circle")
       // Add your code below this line



       // Add your code above this line

  </script>
</body>

Solution

// solution required