Top "Crossfilter" questions

Crossfilter is a JavaScript library for exploring large multivariate datasets in the browser.

D3 Crossfilter basic example

I am just getting introduced to D3 and really like the crossfilter library. I would like to generate something similar …

javascript csv d3.js svg crossfilter
How do I convert a JavaScript forEach loop/function to CoffeeScript

Background: I'm trying to convert some JavaScript code which uses the the Crossfilter library with D3.js data visualization library …

javascript foreach coffeescript d3.js crossfilter
Uncaught TypeError: Cannot read property 'textContent' of null error

I am trying to use dc.js to implement the crossfilter and d3. I am almost successful. When I run …

javascript d3.js dc.js crossfilter
Using an ordinal scale ('d3.scale.ordinal') for the x-axis in a bar chart

I have a data array like this: var data = [{"Alphabet_Type":"a"}, {"Alphabet_Type":"b"}, {"Alphabet_Type":"a"}]; I am …

javascript d3.js bar-chart dc.js crossfilter
What are the reduceAdd, reduceSum , reduceRemove functions in crossfilter? How should they be used?

Can someone explain in simple terms how reduce function with its arguments reduceAdd, reduceSum, reduceRemove works in crossfilter?

javascript crossfilter
Multi-series bar chart in DC-js

I'm using DC.js ( lib on top of D3 ) and have a great example of a single series bar chart: …

javascript d3.js crossfilter dc.js
Adding a filter in dc.js / Crossfilter not updating the chart

jsFiddle: http://jsfiddle.net/PYeFP/ I have a bar chart set up that graphs a users number of trips by …

d3.js crossfilter dc.js
Setting pie chart colors using d3.js

I'm having issues setting pie slice colors using a d3.pieChart. Documentation and examples I've seen use the colors method …

javascript d3.js crossfilter
Properly display bin width in barChart using dc.js and crossfilter.js

I'm making a bar chart using the Dimensional Charting javascript library dc.js, which is based on d3 and crossfilter. …

javascript d3.js crossfilter dc.js