* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
90 lines
2.4 KiB
Markdown
90 lines
2.4 KiB
Markdown
---
|
||
id: 587d7fac367417b2b2512bdc
|
||
title: 使用 d3.max 和 d3.min 函数在数据集中查找最小值和最大值
|
||
challengeType: 6
|
||
forumTopicId: 301496
|
||
dashedName: >-
|
||
use-the-d3-max-and-d3-min-functions-to-find-minimum-and-maximum-values-in-a-dataset
|
||
---
|
||
|
||
# --description--
|
||
|
||
D3 的 `domain()` 和 `range()` 方法根据数据设置比例尺的信息。下面有几种更简单的方法。
|
||
|
||
通常当你设置域的时候,你会想用数据集中的最小值和最大值。试图手动的找到这些值,尤其是在很大的数据集中,可能会出错。
|
||
|
||
D3 有两个方法——`min()` 和 `max()` 来返回这些值。下面是一个例子:
|
||
|
||
```js
|
||
const exampleData = [34, 234, 73, 90, 6, 52];
|
||
d3.min(exampleData) // 返回 6
|
||
d3.max(exampleData) // 返回 234
|
||
```
|
||
|
||
像在散点图的例子中的 \[x, y] 坐标对一样,数据集有可能嵌套数组。在这种情况下,你需要告诉 D3 怎么计算最大值和最小值。幸运的是,`min()` 和 `max()` 都可以使用回调函数。 在下面这个例子中,回调函数的参数 `d` 是当前的内部数组。回调函数需要从内部数组中返回你想计算最大/小值的元素(x 还是 y 值)。下面是一个如何找到二维数组的最大值和最小值的例子:
|
||
|
||
```js
|
||
const locationData = [[1, 7],[6, 3],[8, 3]];
|
||
// 返回第一个元素中的最小值s
|
||
const minX = d3.min(locationData, (d) => d[0]);
|
||
// 在 1,6,8 中 minX 为 1
|
||
```
|
||
|
||
# --instructions--
|
||
|
||
`positionData` 数组中有包含 x、y、z 坐标的子数组。用 D3 的方法去找到数组中 z 坐标(第三个值)的最大值并将它保存在 `output` 变量中。
|
||
|
||
# --hints--
|
||
|
||
`h2` 的文本应该为 8。
|
||
|
||
```js
|
||
assert(output == 8 && $('h2').text() == '8');
|
||
```
|
||
|
||
你应该使用 `max()` 方法。
|
||
|
||
```js
|
||
assert(
|
||
code.match(/\.max/g),
|
||
'Your code should use the <code>max()</code> method.'
|
||
);
|
||
```
|
||
|
||
# --seed--
|
||
|
||
## --seed-contents--
|
||
|
||
```html
|
||
<body>
|
||
<script>
|
||
const positionData = [[1, 7, -4],[6, 3, 8],[2, 9, 3]]
|
||
// Add your code below this line
|
||
|
||
const output = undefined; // Change this line
|
||
|
||
// Add your code above this line
|
||
|
||
d3.select("body")
|
||
.append("h2")
|
||
.text(output)
|
||
</script>
|
||
</body>
|
||
```
|
||
|
||
# --solutions--
|
||
|
||
```html
|
||
<body>
|
||
<script>
|
||
const positionData = [[1, 7, -4],[6, 3, 8],[2, 9, 3]]
|
||
|
||
const output = d3.max(positionData, (d) => d[2])
|
||
|
||
d3.select("body")
|
||
.append("h2")
|
||
.text(output)
|
||
</script>
|
||
</body>
|
||
```
|