freeCodeCamp/curriculum/challenges/chinese-traditional/04-data-visualization/data-visualization-with-d3/set-a-domain-and-a-range-on...

2.3 KiB
Raw Blame History

id title challengeType forumTopicId dashedName
587d7fac367417b2b2512bdb 按比例設置域和範圍 6 301491 set-a-domain-and-a-range-on-a-scale

--description--

默認情況下比例尺使用一對一關係identity relationship 即輸入值直接映射爲輸出值。 但是比例尺可以更靈活更有趣。

假設有一個數據集範圍爲 50 到 480 這是縮放的輸入信息,也被稱爲

你想沿着 x 軸將這些點映射到 SVG 畫布上,位置介於 10 個單位到 500 個單位之間。 這是輸出信息,也被稱爲範圍

domain()range() 方法設置比例尺的值, 它們都接受一個至少有兩個元素的數組作爲參數。 下面是一個例子:

scale.domain([50, 480]);
scale.range([10, 500]);
scale(50)
scale(480)
scale(325)
scale(750)
d3.scaleLinear()

按順序,將在控制檯中顯示以下值:10500323.37807.67

注意,比例尺使用了域和範圍之間的線性關係來找出給定數字的輸出值。 域中的最小值50映射爲範圍中的最小值10

--instructions--

創建一個比例尺,將它的域設置爲 [250, 500],範圍設置爲 [10, 150]

**注意:**你可以將 domain()range() 方法串聯在 scale 變量後。

--hints--

應使用 domain() 方法。

assert(code.match(/\.domain/g));

scaledomain() 應爲 [250, 500]

assert(JSON.stringify(scale.domain()) == JSON.stringify([250, 500]));

應使用 range() 方法。

assert(code.match(/\.range/g));

scalerange() 應爲 [10, 150]

assert(JSON.stringify(scale.range()) == JSON.stringify([10, 150]));

h2 的文本應爲 -102

assert($('h2').text() == '-102');

--seed--

--seed-contents--

<body>
  <script>
    // Add your code below this line
    const scale = d3.scaleLinear();



    // Add your code above this line
    const output = scale(50);
    d3.select("body")
      .append("h2")
      .text(output);
  </script>
</body>

--solutions--

<body>
  <script>
    const scale = d3.scaleLinear();
    scale.domain([250, 500])
    scale.range([10, 150])
    const output = scale(50);
    d3.select("body")
      .append("h2")
      .text(output);
  </script>
</body>