Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://crossfilter.github.io/crossfilter/
Fast n-dimensional filtering and grouping of records.
https://crossfilter.github.io/crossfilter/
Last synced: about 2 months ago
JSON representation
Fast n-dimensional filtering and grouping of records.
- Host: GitHub
- URL: https://crossfilter.github.io/crossfilter/
- Owner: crossfilter
- License: other
- Created: 2015-06-02T13:42:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T00:43:22.000Z (over 1 year ago)
- Last Synced: 2024-10-29T15:34:22.621Z (2 months ago)
- Language: JavaScript
- Homepage: http://crossfilter.github.io/crossfilter/
- Size: 3.17 MB
- Stars: 1,744
- Watchers: 60
- Forks: 189
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-viz - Crossfilter - Crossfilter is a JavaScript library for exploring large multivariate datasets in the browser. ([↑](#contents) Cross Filtering)
README
# Crossfilter
[![Join the chat at https://gitter.im/crossfilter/crossfilter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/crossfilter/crossfilter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ![Tests](https://github.com/crossfilter/crossfilter/workflows/Tests/badge.svg) [![CDNJS](https://img.shields.io/cdnjs/v/crossfilter2.svg)](https://cdnjs.com/libraries/crossfilter2)
**Crossfilter** is a JavaScript library for exploring large multivariate datasets in the browser. Crossfilter supports extremely fast (<30ms) interaction with coordinated views, even with datasets containing a million or more records.
**NOTE:** We are seeking new maintainers for this repo. See [#171](https://github.com/crossfilter/crossfilter/issues/171) for discussion.
Since most interactions only involve a single dimension, and then only small adjustments are made to the filter values, incremental filtering and reducing is significantly faster than starting from scratch. Crossfilter uses sorted indexes (and a few bit-twiddling hacks) to make this possible, dramatically increasing the performance of live histograms and top-K lists. Crossfilter is available under the [Apache License](/square/crossfilter/blob/master/LICENSE).
This is a community-maintained fork of the original [square/crossfilter](https://github.com/square/crossfilter) library.
Want to learn more? [See the wiki.](https://github.com/crossfilter/crossfilter/wiki)
## Gallery of Community Examples
* [Configurable Chart Collection (C3) - World Bank Example](http://drarmstr.github.io/chartcollection/examples/#worldbank) - ([Source](http://drarmstr.github.io/chartcollection/examples/#worldbank/source), [HTML](http://drarmstr.github.io/chartcollection/examples/#worldbank/html))
* [Dimensional Charting JavaScript Library (dc.js)](https://dc-js.github.io/dc.js/) - ([Source](https://dc-js.github.io/dc.js/docs/stock.html))## Installation
This package can be found under the name `crossfilter2` in npm:
npm install crossfilter2
## DevelopmentInstall dependencies:
* `npm install`
Test changes with `npm test`. Build with `npm run build` for use in the browser. You may also want to benchmark your changes with `npm run benchmark`.