2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 587d7fac367417b2b2512bdc
|
2020-12-16 00:37:30 -07:00
|
|
|
|
title: 使用 d3.max 和 d3.min 函数在数据集中查找最小值和最大值
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 6
|
2020-09-18 00:13:05 +08:00
|
|
|
|
forumTopicId: 301496
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: >-
|
|
|
|
|
use-the-d3-max-and-d3-min-functions-to-find-minimum-and-maximum-values-in-a-dataset
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
|
|
|
|
|
2021-01-12 23:56:49 +08:00
|
|
|
|
D3 的 `domain()` 和 `range()` 方法根据数据设置比例尺的信息。下面有几种更简单的方法。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
2021-01-12 23:56:49 +08:00
|
|
|
|
通常当你设置域的时候,你会想用数据集中的最小值和最大值。试图手动的找到这些值,尤其是在很大的数据集中,可能会出错。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
|
|
D3 有两个方法——`min()` 和 `max()` 来返回这些值。下面是一个例子:
|
2020-09-18 00:13:05 +08:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
const exampleData = [34, 234, 73, 90, 6, 52];
|
|
|
|
|
d3.min(exampleData) // 返回 6
|
|
|
|
|
d3.max(exampleData) // 返回 234
|
|
|
|
|
```
|
|
|
|
|
|
2021-01-12 23:56:49 +08:00
|
|
|
|
像在散点图的例子中的 \[x, y] 坐标对一样,数据集有可能嵌套数组。在这种情况下,你需要告诉 D3 怎么计算最大值和最小值。幸运的是,`min()` 和 `max()` 都可以使用回调函数。 在下面这个例子中,回调函数的参数 `d` 是当前的内部数组。回调函数需要从内部数组中返回你想计算最大/小值的元素(x 还是 y 值)。下面是一个如何找到二维数组的最大值和最小值的例子:
|
2020-09-18 00:13:05 +08:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
const locationData = [[1, 7],[6, 3],[8, 3]];
|
|
|
|
|
// 返回第一个元素中的最小值s
|
|
|
|
|
const minX = d3.min(locationData, (d) => d[0]);
|
|
|
|
|
// 在 1,6,8 中 minX 为 1
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --instructions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2021-01-12 23:56:49 +08:00
|
|
|
|
`positionData` 数组中有包含 x、y、z 坐标的子数组。用 D3 的方法去找到数组中 z 坐标(第三个值)的最大值并将它保存在 `output` 变量中。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`h2` 的文本应该为 8。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(output == 8 && $('h2').text() == '8');
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
你应该使用 `max()` 方法。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
code.match(/\.max/g),
|
|
|
|
|
'Your code should use the <code>max()</code> method.'
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
# --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>
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```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>
|
|
|
|
|
```
|