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

1.2 KiB

id title challengeType videoUrl localeTitle
587d7fab367417b2b2512bd7 Create a Scatterplot with SVG Circles 6

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    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