freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/create-a-linear-scale-with-...

89 lines
2.2 KiB
Markdown
Raw Normal View History

---
id: 587d7fab367417b2b2512bda
title: 用 D3 创建线性比例
challengeType: 6
forumTopicId: 301483
dashedName: create-a-linear-scale-with-d3
---
# --description--
条形图和散点图都直接在 SVG 画布上绘制数据。 但是,如果一组的高或者其中一个数据点比 SVG 的高或宽更大,它将跑到 SVG 区域外。
D3 中,比例尺可帮助布局数据。 `scales` 是函数,它告诉程序如何将一组原始数据点映射到 SVG 画布上。
例如,假设你有一个 100x500 大小的 SVG 画布你想为许多国家绘制国内生产总值GDP的图表。 这组数据将在十亿美元或万亿美元的范围内。 你给 D3 提供一种缩放方法,告诉它如何将大的 GDP 值放置在 100x500 大小的区域。
你不太可能按数据原本的大小来绘制图表。 在绘制之前,将整个数据集缩放,让 `x``y` 值适合画布的宽高。
D3 有几种缩放类型。 对于线性缩放(通常使用于定量数据),使用 D3 的 `scaleLinear()` 方法:
2021-04-05 15:04:04 +00:00
```js
const scale = d3.scaleLinear()
```
2021-04-05 15:04:04 +00:00
默认情况下比例尺使用一对一关系identity relationship。 输入的值和输出的值相同。 后面的挑战将涉及如何改变默认比例。
# --instructions--
2021-04-05 15:04:04 +00:00
更改 `scale` 变量,以创建线性比例。 然后将 `output` 变量设置为 scale 函数,调用函数时传入参数 `50`
# --hints--
`h2` 的文本应为 `50`
```js
assert($('h2').text() == '50');
```
应使用 `scaleLinear()` 方法。
```js
assert(code.match(/\.scaleLinear/g));
```
`output` 变量应调用 `scale`,传入参数 `50`
```js
assert(output == 50 && code.match(/scale\(\s*?50\s*?\)/g));
```
# --seed--
## --seed-contents--
```html
<body>
<script>
// Add your code below this line
const scale = undefined; // Create the scale here
const output = scale(); // Call scale with an argument here
// Add your code above this line
d3.select("body")
.append("h2")
.text(output);
</script>
</body>
```
# --solutions--
```html
<body>
<script>
const scale = d3.scaleLinear();
const output = scale(50);
d3.select("body")
.append("h2")
.text(output);
</script>
</body>
```