crossfilter.js 非常适合识别与特定连续数据维度段相匹配的数据点。这通常是您想要的确切行为,但我有一个特殊的用例,可以方便地了解与任何选定过滤器都不匹配的数据点集。有没有办法在 crossfilter.js 中获得所选维度的补充?

作为一个具体的例子,当您加载 crossfilter.js page 时,我想知道所有不在 2 月(预先指定的日期范围)内的航类的列表。

最佳答案

在撰写本文时,还没有直接的方法来补充给定 Crossfilter 实例的当前过滤器集。这样的操作将重新计算所有组,以便它们匹配补充过滤器。

如果您只是想要一个与当前过滤器集不匹配的记录列表,这并不完全简单,但您可以考虑遍历所有记录的数组(按特定顺序),并与匹配记录的数组(在相同的顺序)。

例如:

var db = crossfilter(data),
    date = db.dimension(function(d) { return d.date; }),
    recordsByDate = date.top(Infinity),
    n = db.size();

// Add some filters here on various dimensions…
date.filterRange([0, 31536e6]);

// Retrieve matching records in date order.
var matchesByDate = date.top(Infinity),
    m = matchesByDate.length;

// Iterate over all records in date order, and compare with matching records.
for (var i = 0, j = 0; i < n && j < m; ++i) {
  if (recordsByDate[i] === matchesByDate[j]) {
    // Ignore matches.
    ++j;
    continue;
  }
  // Otherwise, non-matching record: process immediately or add to an array.
}

关于javascript - crossfilter.js 中的补充集?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20919591/

10-12 07:27